This repository has been archived by the owner on May 15, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
executable file
·70 lines (65 loc) · 2.14 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#! /usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name = 'OpenFisca-Web-API',
version = '8.2.0',
author = 'OpenFisca Team',
author_email = 'contact@openfisca.fr',
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Environment :: Web Environment',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Server',
],
description = u'Web API for OpenFisca',
keywords = 'api benefit microsimulation server social tax web',
license = 'http://www.fsf.org/licensing/licenses/agpl-3.0.html',
url = 'https://github.com/openfisca/openfisca-web-api',
data_files = [
('share/locale/fr/LC_MESSAGES', ['openfisca_web_api/i18n/fr/LC_MESSAGES/openfisca-web-api.mo']),
(
'share/openfisca/openfisca-web-api', [
'CHANGELOG.md',
'development-france.ini',
'development-tunisia.ini',
'LICENSE',
'README.md',
'test.ini',
],
),
],
entry_points = {
'console_scripts': ['openfisca-serve=openfisca_web_api.scripts.serve:main'],
'paste.app_factory': 'main = openfisca_web_api.application:make_app',
},
extras_require = {
'paster': [
'PasteScript',
],
'test': [
'flake8',
'nose',
],
'tracker': [
'openfisca-tracker',
],
},
install_requires = [
'Babel >= 0.9.4',
'Biryani[datetimeconv] >= 0.10.4',
'OpenFisca-Core >= 23, < 24.0',
'PasteDeploy',
'WebError >= 0.10',
'WebOb >= 1.1',
'enum34 >= 1.1.6',
],
message_extractors = {'openfisca_web_api': [
('**.py', 'python', None),
]},
packages = find_packages(exclude=['openfisca_web_api.tests*']),
test_suite = 'nose.collector',
)