-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (37 loc) · 1.12 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
#! /usr/bin/env python
from setuptools import setup, find_packages
setup(
name='OpenFisca-CEQ',
version='0.4.1',
author='OpenFisca Team',
author_email='[email protected]',
description=u'OpenFisca tax and benefit system for CEQ',
keywords='benefit microsimulation social tax',
license='http://www.fsf.org/licensing/licenses/agpl-3.0.html',
url='https://github.com/openfisca/openfisca-ceq',
include_package_data = True, # Will read MANIFEST.in
install_requires = [
'OpenFisca-Survey-Manager >=0.40.1,<1.0',
'OpenFisca-Core >=34.4.2,<36.0',
'matplotlib >=3.2.1,<4.0',
'pandas >= 0.24.1',
'python-slugify',
'scipy',
'xlrd >= 1.0.0',
'xlsxwriter',
'xlwt >= 1.0.0',
],
extras_require = {
'dev': [
"autopep8 ==1.5.4",
"flake8 >=3.8.0,<3.10.0",
"flake8-print",
"papermill",
'pdbpp',
"pytest >= 5.0.0, < 7.0.0",
"requests >= 2.8",
"yamllint >=1.11.1,<1.27",
],
},
packages=find_packages(),
)