-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
30 lines (28 loc) · 1.01 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
from setuptools import setup
import json2txttree
setup(name='json2txttree',
version=json2txttree.__version__,
author='Cibin Joseph',
author_email='[email protected]',
url='http://pypi.python.org/pypi/json2txttree',
description='Library for pretty printing json data to txt files',
long_description='\n'.join([
open('README.rst', 'r').read(),
open('CHANGES.rst', 'r').read()]),
long_description_content_type='text/x-rst',
keywords='json',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Database'],
python_requires='>=3',
license='MIT',
include_package_data=True,
zip_safe=True,
install_requires=[],
py_modules=['json2txttree'],
test_suite='test_json2txttree.main',
)