forked from ricardokirkner/collection-json.python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (26 loc) · 823 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
29
30
31
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import collection_json
classifiers = [
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities',
]
setup(
name='collection-json',
version=collection_json.__version__,
author='Ricardo Kirkner',
author_email='[email protected]',
url='http://pypi.python.org/pypi/collection-json',
py_modules=['collection_json'],
description='Small library to work with Collection+JSON documents.',
long_description=open('README.txt').read(),
license='BSD',
classifiers=classifiers,
test_suite='tests',
)