-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 885 Bytes
/
setup.py
File metadata and controls
26 lines (25 loc) · 885 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
from distutils.core import setup
setup(
name='py-li',
version='0.0.8',
packages=['li'],
license='MIT',
author='Casey Thomas',
author_email='casey@axisphilly.org',
description="A Python wrapper for the City of Philadelphia L&I API",
long_description="A Python wrapper for the City of Philadelphia Licenses & Inspections API",
url='http://github.com/AxisPhilly/py-li',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires=[
'argparse==1.2.1',
'requests==1.2.3',
'wsgiref==0.1.2'
]
)