-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
30 lines (28 loc) · 1012 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
import setuptools
install_requires = ["taxcalc", "behresp", "dask", "bokeh"]
with open("README.md", "r") as f:
long_description = f.read()
version = "2.7.2"
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.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
include_package_data=True,
entry_points={"console_scripts": ["taxbrain = taxbrain.cli:cli_main"]},
)