forked from openfisca/openfisca-france-local
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
30 lines (28 loc) · 833 Bytes
/
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
from setuptools import setup, find_packages
setup(
name="OpenFisca-France-Local",
version="0.17.1",
description="Extension OpenFisca pour nos partenariats avec les collectivités territoriales",
license="http://www.fsf.org/licensing/licenses/agpl-3.0.html",
author="",
packages=find_packages(),
include_package_data=True,
install_requires = [
'OpenFisca-Core >= 25, < 36',
'OpenFisca-France >= 52, < 57',
'pandas == 1.0.3'
],
extras_require = {
'test': [
'nose',
],
'excel-reader': [
'xlrd == 1.2.0'
]
},
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
],
scripts=['openfisca_france_local/scripts/openfisca_local_test']
)