forked from swaroopch/edn_format
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (26 loc) · 866 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(name="edn_format",
version="0.5.7",
author="Swaroop C H",
author_email="[email protected]",
description="EDN format reader and writer in Python",
long_description=open('README.md').read(),
url="https://github.com/swaroopch/edn_format",
install_requires=[
"pytz==2013.9",
"pyRFC3339==0.2",
"ply==3.4",
],
license="Apache 2.0",
packages=['edn_format'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Topic :: Software Development',
'Programming Language :: Python',
'Operating System :: OS Independent',
])