-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (25 loc) · 807 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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(name="admintools",
version='0.1',
license="MIT",
description="opencivicdata admin tools",
long_description="",
url="",
packages=find_packages(),
include_package_data=True,
install_requires=[
'Django>=1.11',
'pupa>=0.6',
'opencivicdata>=1.0',
'flake8',
# Temporary Dependancy
'idna<2.6,>=2.5',
],
classifiers=["Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.5",
],
)