forked from swaroopch/edn_format
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (31 loc) · 1.19 KB
/
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
29
30
31
32
33
34
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
try:
from pip.req import parse_requirements
except ImportError:
from pip._internal.req import parse_requirements
requirements = [str(ir.req) for ir in parse_requirements('requirements.txt', session=False)]
setup(name="edn_format",
version="0.6.4",
author="Swaroop C H",
author_email="swaroop@swaroopch.com",
description="EDN format reader and writer in Python",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url="https://github.com/swaroopch/edn_format",
install_requires=requirements,
license="Apache 2.0",
packages=['edn_format'],
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Topic :: Software Development',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
])