-
Notifications
You must be signed in to change notification settings - Fork 28
/
setup.py
35 lines (32 loc) · 1.05 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
install_requires = ["Django>=3.2", "psycopg2-binary"]
extras_require = {
"dev": ["pytest>=3.6", "pytest-cov", "pytest-django", "coveralls==3.2.0", "flake8"]
}
setup(
name="opencivicdata",
version="3.4.0",
author="James Turk",
author_email="[email protected]",
license="BSD",
description="python opencivicdata library",
long_description="",
url="",
packages=find_packages(),
include_package_data=True,
install_requires=install_requires,
extras_require=extras_require,
platforms=["any"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
)