forked from PSLmodels/Tax-Brain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (32 loc) · 1.02 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
import setuptools
install_requires = ["taxcalc", "behresp", "dask", "bokeh"]
with open("README.md", "r") as f:
long_description = f.read()
version = "0.0.0"
setuptools.setup(
name="taxbrain",
version=version,
author="Anderson Frailey",
author_email="[email protected]",
description="Python library for advanced tax policy analysis",
long_description=long_description,
url="https://github.com/PSLmodels/Tax-Brain",
packages=["taxbrain"],
install_requires=install_requires,
tests_require=["pytest", "compdevkit"],
license="MIT",
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
"Opperating Sytem :: OS Independent"
],
include_package_data=True,
entry_points={
"console_scripts": [
"taxbrain = taxbrain.cli:cli_main"
]
}
)