-
Notifications
You must be signed in to change notification settings - Fork 27
/
setup.py
55 lines (53 loc) · 1.6 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name="PolicyEngine-UK",
version="2.15.1",
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=[
"PolicyEngine-Core>=3.6.4",
"PolicyEngine-UK-Data>=1.9,<1.10",
"microdf_python",
],
extras_require={
"dev": [
"tqdm",
"black",
"coverage",
"furo<2023",
"jupyter-book",
"linecheck",
"pytest",
"setuptools",
"sphinx-argparse>=0.3.2,<1",
"sphinx-math-dollar>=1.2.1,<2",
"wheel",
"yaml-changelog>=0.1.7",
]
},
# Windows CI requires Python 3.9.
python_requires=">=3.7",
entry_points={
"console_scripts": [],
},
packages=find_packages(),
)