forked from PolicyEngine/policyengine-uk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
69 lines (67 loc) · 1.97 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name="PolicyEngine-UK",
version="0.69.0",
author="PolicyEngine",
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",
"Topic :: Scientific/Engineering :: Information Analysis",
],
description="PolicyEngine tax and benefit system for the UK",
keywords="benefit microsimulation social tax",
license="http://www.fsf.org/licensing/licenses/agpl-3.0.html",
url="https://github.com/PolicyEngine/policyengine-uk",
include_package_data=True, # Will read MANIFEST.in
data_files=[
(
"share/openfisca/openfisca-country-template",
["CHANGELOG.md", "LICENSE", "README.md"],
),
],
install_requires=[
"argparse>=1.4.0",
"click>=8.0.0",
"gif[plotly]>=3.0.0",
"inquirer>=2.7.0",
"microdf_python>=0.3.0",
"pandas",
"plotly>=4.14.3",
"PolicyEngine-Core>=2.11.3,<3",
"pyyaml>=5.3.1",
"pytest",
"requests>=2.25.1",
"synthimpute",
"tqdm>=4.59.0",
"yaml-changelog>=0.1.5",
],
extras_require={
"dev": [
"black",
"coverage",
"furo<2023",
"jupyter-book",
"linecheck",
"markupsafe==2.0.1",
"plotly",
"pydata-sphinx-theme==0.13.1",
"pytest",
"setuptools",
"sphinx-argparse>=0.3.2,<1",
"sphinx-math-dollar>=1.2.1,<2",
"survey-enhance",
"wheel",
"yaml-changelog>=0.1.7",
]
},
# Windows CI requires Python 3.9.
python_requires=">=3.7",
entry_points={
"console_scripts": [],
},
packages=find_packages(),
)