-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
64 lines (60 loc) · 2.38 KB
/
Copy pathsetup.py
File metadata and controls
64 lines (60 loc) · 2.38 KB
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
"""This file contains your country package's metadata and dependencies."""
from pathlib import Path
from setuptools import find_packages, setup
# Read the contents of our README file for PyPi
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text() # pylint: disable=W1514
setup(
name = "OpenFisca-Zimbabwe",
version = "6.0.1",
author = "OpenFisca Team",
author_email = "contact@openfisca.org",
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",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Information Analysis",
],
description = "OpenFisca tax and benefit system for Zimbabwe",
long_description=long_description,
long_description_content_type="text/markdown",
keywords = "benefit microsimulation social tax",
license = "http://www.fsf.org/licensing/licenses/agpl-3.0.html",
license_files = ("LICENSE",),
url = "https://github.com/openfisca/country-template",
include_package_data = True, # Will read MANIFEST.in
data_files = [
(
"share/openfisca/openfisca-country-template",
["CHANGELOG.md", "README.md"],
),
],
install_requires = [
"openfisca-core[web-api] >= 40.0.0, < 41.0.0",
],
extras_require = {
"dev": [
"autopep8 >= 2.0.2, < 3.0",
"flake8 >= 6.0.0, < 7.0",
"flake8-bugbear >= 23.3.23, < 24.0",
"flake8-builtins >= 2.1.0, < 3.0",
"flake8-coding >= 1.3.2, < 2.0",
"flake8-commas >= 2.1.0, < 3.0",
"flake8-comprehensions >= 3.11.1, < 4.0",
"flake8-docstrings >= 1.7.0, < 2.0",
"flake8-import-order >= 0.18.2, < 0.19.0",
"flake8-print >= 5.0.0, < 6.0",
"flake8-quotes >= 3.3.2, < 4.0",
"flake8-simplify >= 0.19.3, < 0.20.0",
"flake8-use-fstring >= 1.4, < 2",
"importlib-metadata >= 6.1.0, < 7.0",
"pycodestyle >= 2.10.0, < 3.0",
"pylint >= 2.17.1, < 3.0",
],
},
packages = find_packages(),
)