forked from johngalambos/OpenFisca-COV
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
64 lines (60 loc) · 2.38 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
"""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-COV",
version = "5.0.0",
author = "OpenFisca Team",
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.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering :: Information Analysis",
],
description = "OpenFisca tax and benefit system for COV",
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] >= 38.0.0, < 39.0.0",
],
extras_require = {
"dev": [
"autopep8 >= 1.5.4, < 2.0.0",
"flake8 >= 3.8.0, < 4.0.0",
"flake8-bugbear >= 20.1.0, < 22.0.0",
"flake8-builtins >= 1.5.0, < 2.0.0",
"flake8-coding >= 1.3.0, < 2.0.0",
"flake8-commas >= 2.0.0, < 3.0.0",
"flake8-comprehensions >= 3.2.0, < 4.0.0",
"flake8-docstrings >= 1.5.0, < 2.0.0",
"flake8-import-order >= 0.18.0, < 1.0.0",
"flake8-print >= 3.1.0, < 5.0.0",
"flake8-quotes >= 3.2.0, < 4.0.0",
"flake8-simplify >= 0.9.0, < 1.0.0",
"flake8-use-fstring >= 1.1.0, < 2.0.0",
"importlib-metadata < 4.3.0",
"pycodestyle >= 2.7.0, < 2.8.0",
"pylint >= 2.6.0, < 3.0.0",
],
},
packages = find_packages(),
)