forked from opencivicdata/python-opencivicdata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (34 loc) · 1.21 KB
/
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
34
35
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(name="opencivicdata-django",
version='0.8.2',
author="James Turk",
author_email='[email protected]',
license="BSD",
description="python opencivicdata library",
long_description="",
url="",
py_modules=['opencivicdata.apps', 'opencivicdata.common'],
packages=['opencivicdata.admin',
'opencivicdata.management',
'opencivicdata.management.commands',
'opencivicdata.migrations',
'opencivicdata.models',
'opencivicdata.tests',
'opencivicdata.templates',
],
include_package_data=True,
install_requires=[
'Django>=1.9',
'psycopg2',
'opencivicdata-divisions',
],
platforms=["any"],
classifiers=["Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.4",
],
)