-
-
Notifications
You must be signed in to change notification settings - Fork 157
/
setup.py
46 lines (42 loc) · 1.44 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
36
37
38
39
40
41
42
43
44
45
46
from setuptools import setup
with open("README.md") as f:
longdesc = f.read()
version = "4.3.1"
config = {
"description": "Tax Calculator",
"url": "https://github.com/PSLmodels/Tax-Calculator",
"download_url": "https://github.com/PSLmodels/Tax-Calculator",
"description": "taxcalc",
"long_description_content_type": "text/markdown",
"long_description": longdesc,
"version": version,
"license": "CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
"packages": ["taxcalc", "taxcalc.cli"],
"include_package_data": True,
"name": "taxcalc",
"install_requires": [
"setuptools",
"numpy",
"pandas",
"bokeh",
"numba",
"requests",
"paramtools>=0.18.3",
],
"classifiers": [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
],
"tests_require": ["pytest"],
"entry_points": {"console_scripts": ["tc=taxcalc.cli.tc:cli_tc_main"]},
}
setup(**config)