forked from PolicyEngine/policyengine-us
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
79 lines (76 loc) · 2.23 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
"""This file contains your country package's metadata and dependencies."""
from setuptools import find_packages, setup
with open("README.md", "r") as readme_file:
readme = readme_file.read()
setup(
name="policyengine-us",
version="0.357.1",
author="PolicyEngine",
author_email="[email protected]",
long_description=readme,
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Information Analysis",
],
description="PolicyEngine tax and benefit system for the US",
keywords="benefit microsimulation social tax",
license="http://www.fsf.org/licensing/licenses/agpl-3.0.html",
url="https://github.com/PolicyEngine/policyengine-us",
include_package_data=True, # Will read MANIFEST.in
data_files=[
(
"share/openfisca/openfisca-country-template",
["CHANGELOG.md", "LICENSE", "README.md"],
),
],
install_requires=[
"click==8.1.3",
"h5py",
"microdf_python",
"pandas",
"pathlib",
"policyengine-core>=2.1,<3",
"pytest",
"pytest-dependency",
"pyyaml",
"requests",
"scipy==1.10.1",
"synthimpute",
"tables",
"tabulate",
"tqdm",
],
extras_require={
"dev": [
"autopep8",
"black",
"coverage",
"furo",
"jupyter-book",
"linecheck",
"markupsafe",
"plotly",
"pydata-sphinx-theme==0.13.1",
"setuptools",
"sphinx",
"sphinx-argparse",
"sphinx-math-dollar",
"wheel",
"yaml-changelog",
"survey-enhance",
],
},
# Windows CI requires Python 3.9.
python_requires=">=3.7",
entry_points={
"console_scripts": [
"policyengine-us = policyengine_us.tools.cli:main",
],
},
packages=find_packages(),
)