-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
executable file
·36 lines (32 loc) · 1020 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
31
32
33
34
35
36
#! /usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='OpenFisca-Barcelona',
version='1.0.0',
author='OpenFisca Team',
author_email='[email protected]',
description=u'OpenFisca tax and benefit system for Barcelona',
keywords='benefit microsimulation social tax',
license='http://www.fsf.org/licensing/licenses/agpl-3.0.html',
url='https://github.com/openfisca/openfisca-barcelona',
entry_points = {
'console_scripts': ['openfisca-debug-test=openfisca_barcelona.scripts.debug_test:main'],
},
include_package_data=True, # Will read MANIFEST.in
install_requires=[
'gunicorn >=20.0.0,<21.0.0',
'Werkzeug >=1.0.0, <2.0.0',
'OpenFisca-Core[web-api] >=34.0, <35.0',
],
extras_require={
'test': [
'flake8',
'flake8-print',
'nose',
'pydevd',
]
},
packages=find_packages(),
test_suite='nose.collector',
)