-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 1.04 KB
/
setup.py
File metadata and controls
31 lines (29 loc) · 1.04 KB
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
import setuptools
install_requires = ["taxcalc", "behresp", "dask", "bokeh"]
with open("README.md", "r", encoding="utf-8") as f:
longdesc = f.read()
version = "2.8.0"
setuptools.setup(
name="taxbrain",
version=version,
author="Anderson Frailey",
author_email="andersonfrailey@gmail.com",
description="Python library for advanced tax policy analysis",
long_description_content_type="text/markdown",
long_description=longdesc,
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.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
include_package_data=True,
entry_points={"console_scripts": ["taxbrain = taxbrain.cli:cli_main"]},
)