forked from propublica/990-xml-database
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (30 loc) · 913 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
#!/usr/bin/env python
from setuptools import find_packages, setup
install_requires = [
"Django>=2.0.1",
"requests",
"unidecode",
"irsx @ https://github.com/datamade/990-xml-reader/releases/download/0.10/irsx-0.3.2-py3-none-any.whl",
]
setup(
name="irsdb",
version="0.0.1",
author="Jacob Fenton",
license="BSD",
long_description="",
url="",
packages=find_packages(),
include_package_data=True,
install_requires=install_requires,
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.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
)