This repository has been archived by the owner on Jul 31, 2019. It is now read-only.
forked from openfisca/openfisca-france
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
64 lines (59 loc) · 1.92 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
#! /usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name = 'OpenFisca-France',
version = '19.0.4',
author = 'OpenFisca Team',
author_email = 'contact@openfisca.fr',
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: POSIX",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Information Analysis",
],
description = u'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 = {
'api': [
'OpenFisca-Web-API >= 7.2, < 8.0',
],
'baremes_ipp': [
'xlrd >= 1.0.0',
'lxml >= 3.8.0, < 4.0',
'Biryani[datetimeconv] >= 0.10.4',
],
'inversion_revenus': [
'scipy >= 0.17',
],
'de_net_a_brut': [
'scipy >= 0.17',
],
'taxipp': [
'pandas >= 0.13',
],
'test': [
'nose',
'flake8 == 3.4.1',
'scipy >= 0.17', # Only used to test de_net_a_brut reform
],
},
include_package_data = True, # Will read MANIFEST.in
install_requires = [
'numpy >= 1.11, < 1.13',
'OpenFisca-Core >= 20.0.0, < 21.0',
'PyYAML >= 3.10',
'requests >= 2.8',
],
message_extractors = {'openfisca_france': [
('**.py', 'python', None),
]},
packages = find_packages(exclude=['openfisca_france.tests*']),
test_suite = 'nose.collector',
)