-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
51 lines (49 loc) · 1.47 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
#! /usr/bin/env python
from setuptools import setup, find_packages
setup(
name='OpenFisca-Senegal',
version='0.11.2',
author='OpenFisca Team',
author_email='[email protected]',
description='Senegalese tax and benefit system for OpenFisca',
keywords='benefit microsimulation senegal social tax',
license='http://www.fsf.org/licensing/licenses/agpl-3.0.html',
url='https://github.com/openfisca/senegal',
data_files=[
('share/openfisca/openfisca-senegal',
['CHANGELOG.md', 'LICENSE', 'README.md']),
],
extras_require={
'notebook': [
'matplotlib',
'notebook',
'OpenFisca-Survey-Manager >= 2, <=2.3',
'openpyxl',
'pandas',
'scipy',
'xlrd',
'xlwt',
],
'survey': [
'OpenFisca-Survey-Manager >= 2, <=2.3',
'scipy',
],
'dev': [
"autopep8 ==1.5.5",
"flake8 >=6.0.0,<7.0.0",
"flake8-print",
"openfisca-survey-manager >= 2, <=2.3",
"pytest >= 7.2.2, < 8.0.0",
"yamllint >=1.11.1,<1.27",
"pandas",
],
'ceq': [
"openfisca-ceq >= 0.4.1",
],
},
include_package_data = True, # Will read MANIFEST.in
install_requires=[
'OpenFisca-Core >= 41, < 42.0',
],
packages=find_packages(exclude=['openfisca_senegal.tests*']),
)