-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
36 lines (34 loc) · 1.18 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_namespace_packages
setup(
name="Openfisca-Paris",
version="5.5.9",
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="Plugin OpenFisca pour les aides sociales de la mairie de Paris",
long_description_content_type='text/markdown',
keywords="benefit france paris microsimulation social tax",
license="http://www.fsf.org/licensing/licenses/agpl-3.0.html",
packages=find_namespace_packages(),
include_package_data=True,
install_requires=[
'OpenFisca-Core >= 43, < 44',
'OpenFisca-France >= 169.0.0, < 170',
],
extras_require={
'test': [
'nose',
'pytest >= 5.4.2'
]
},
)