-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
31 lines (28 loc) · 873 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
import jsonselect
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='jsonselect',
version=jsonselect.__version__,
description='Python implementation of jsonselect (http://jsonselect.org/)',
long_description=open('README.md').read(),
author='Matthew Hooker',
author_email='[email protected]',
url='https://github.com/mwhooker/jsonselect',
license='ISC',
packages=['jsonselect', 'tests'],
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: ISC License (ISCL)',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
],
keywords=[
'json'
]
)