-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (40 loc) · 1.27 KB
/
setup.py
File metadata and controls
50 lines (40 loc) · 1.27 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env python
# coding: utf-8
from setuptools import setup
try:
import pypandoc
description = pypandoc.convert('README.md', 'rst')
except:
description = ''
setup(
name='json_diff_patch',
version='0.5.0',
packages=['json_diff_patch'],
package_dir={'json_diff_patch': 'lib'},
install_requires=['colorama'],
entry_points={
'console_scripts': [
'json = json_diff_patch.__main__:main',
]
},
author='apack1001',
author_email='apack1001@gmail.com',
url='https://github.com/apack1001/json-diff-patch',
description='A set of tools to manipulate JSON: diff, patch, pretty-printing',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: Unix',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
'License :: OSI Approved :: MIT License'
],
keywords=['json'],
long_description=description
)