forked from igorgue/pjson
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (31 loc) · 908 Bytes
/
setup.py
File metadata and controls
33 lines (31 loc) · 908 Bytes
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
import os
from setuptools import setup, find_packages
setup(
name='pjson',
author='Igor Guerrero',
author_email='igfgt1@gmail.com',
description=('Command-line tool to validate and pretty-print JSON and XML.'),
license='MIT',
keywords='json xml',
url='http://igorgue.com/pjson',
version='0.3',
packages=find_packages(),
package_data = {
# If any package contains *.txt or *.md files, include them:
'': ['*.md', 'LICENSE'],
},
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: POSIX",
"Programming Language :: Python :: 2.7",
"License :: OSI Approved :: MIT License",
],
entry_points={
'console_scripts': ['pjson = pjson:main']
},
install_requires=[
'Pygments==1.5'
]
)