-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·33 lines (30 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
32
33
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='ijson-filter',
version='1.0',
description="Iterative JSON filter.",
author="https://github.com/rusty-dev",
author_email="[email protected]",
url='https://github.com/rusty-dev/ijson-filter',
packages=['ijson_filter'],
include_package_data=True,
install_requires=[
'ijson>=2.3',
'simplejson>=3.10.0',
'click>=6.7'
],
scripts=['ijson_filter/ijson-filter'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
]
)