forked from PolicyEngine/policyengine-us
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
59 lines (57 loc) · 1.75 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
"""This file contains your country package's metadata and dependencies."""
from setuptools import find_packages, setup
setup(
name="OpenFisca-US",
version="0.44.0",
author="Nikhil Woodruff",
author_email="[email protected]",
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.7",
"Topic :: Scientific/Engineering :: Information Analysis",
],
description="OpenFisca 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/openfisca-us",
include_package_data=True, # Will read MANIFEST.in
data_files=[
(
"share/openfisca/openfisca-country-template",
["CHANGELOG.md", "LICENSE", "README.md"],
),
],
install_requires=[
"OpenFisca-Core[web-api] >= 35.0.0",
"openfisca_us_data >= 0.1.2",
"microdf_python",
"pandas",
"tqdm",
"requests",
"OpenFisca-Tools>=0.3.0,<1.0.0",
"pyyaml",
],
extras_require={
"dev": [
"autopep8 >= 1.5.4, < 2.0.0",
"black",
"wheel",
"pytest",
"setuptools",
"jupyter-book",
"coverage",
"plotly",
"yaml-changelog>=0.1.6",
],
},
python_requires=">=3.7,<3.8",
entry_points={
"console_scripts": [
"openfisca-us = openfisca_us.tools.cli:main",
],
},
packages=find_packages(),
)