forked from PolicyEngine/policyengine-us
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
75 lines (72 loc) · 2.27 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
"""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.198.0",
author="PolicyEngine",
author_email="hello@policyengine.org",
long_description=readme,
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==3.7.0",
"microdf_python==0.3.0",
"pandas==1.5.2",
"pathlib==1.0.1",
"policyengine-core==1.11.1",
"pytest==5.4.3",
"pytest-dependency==0.5.1",
"pyyaml==6.0",
"requests==2.28.1",
"synthimpute==0.1",
"tables==3.8.0",
"tabulate==0.9.0",
"tqdm==4.62.3",
],
extras_require={
"dev": [
"autopep8==1.7.0",
"black==22.12.0",
"coverage==6.5.0",
"furo==2022.9.29",
"jupyter-book==0.13.1",
"linecheck==0.1.0",
"markupsafe==2.0.1",
"plotly==5.11.0",
"setuptools==65.6.3",
"sphinx==4.5.0",
"sphinx-argparse==0.4.0",
"sphinx-math-dollar==1.2.1",
"wheel==0.38.4",
"yaml-changelog==0.3.0",
],
},
# Windows CI requires Python 3.9.
python_requires=">=3.7,<3.10",
entry_points={
"console_scripts": [
"policyengine-us = policyengine_us.tools.cli:main",
],
},
packages=find_packages(),
)