-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
41 lines (38 loc) · 1.42 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
from setuptools import setup, find_namespace_packages
setup(
name='OpenFisca-France-Local',
version='6.17.3',
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.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Scientific/Engineering :: Information Analysis',
],
description='Extension OpenFisca pour nos partenariats avec les collectivités territoriales',
long_description_content_type='text/markdown',
keywords='benefit france france-local microsimulation social tax',
license='http://www.fsf.org/licensing/licenses/agpl-3.0.html',
url='https://github.com/openfisca/openfisca-france-local',
packages=find_namespace_packages(),
include_package_data=True,
install_requires=[
'OpenFisca-Core >= 43, < 44',
'OpenFisca-France >= 169.0.0, < 170',
'pandas >= 1.5.3, <2.0'
],
extras_require={
'test': [
'nose',
],
'excel-reader': [
'openpyxl == 3.1.2',
]
},
scripts=['openfisca_france_local/scripts/openfisca_local_test']
)