forked from openfisca/openfisca-france
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
71 lines (66 loc) · 2.19 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
70
71
#! /usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name = "OpenFisca-France",
version = "48.10.6",
author = "OpenFisca Team",
author_email = "contact@openfisca.fr",
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",
"Topic :: Scientific/Engineering :: Information Analysis",
],
description = "French tax and benefit system for OpenFisca",
keywords = "benefit france microsimulation social tax",
license = "http://www.fsf.org/licensing/licenses/agpl-3.0.html",
url = "https://github.com/openfisca/openfisca-france",
data_files = [
(
"share/openfisca/openfisca-france",
["CHANGELOG.md", "LICENSE.AGPL.txt", "README.md"],
),
],
extras_require = {
"inversion_revenus": [
"scipy >= 0.17",
],
"de_net_a_brut": [
"scipy >= 0.17",
],
"taxipp": [
"pandas >= 0.13",
],
"dev": [
"autopep8 ==1.5",
"flake8 >=3.7.0,<3.8.0",
"flake8-print",
"pytest <5.0",
"scipy >= 0.17", # Only used to test de_net_a_brut reform
"requests >= 2.8",
"yamllint >=1.11.1,<1.21"
],
"casd-dev": [
# Same as dev with packages not available at CASD removed
"autopep8 >=1.3.2",
"pytest < 5.0",
"requests >= 2.8",
"scipy >= 0.17", # Only used to test de_net_a_brut reform
]
},
include_package_data = True, # Will read MANIFEST.in
install_requires = [
"OpenFisca-Core >=34.6,<35.0",
],
message_extractors = {"openfisca_france": [
("**.py", "python", None),
]},
packages = find_packages(exclude = [
"openfisca_france.tests*",
"openfisca_france.assets.taxe_habitation.source*",
]),
)