-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Mauko Quiroga
committed
Apr 28, 2019
1 parent
ddc6d69
commit 65d84b3
Showing
44 changed files
with
75 additions
and
104 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,4 @@ | ||
recursive-include openfisca_france_data/parameters * | ||
include CHANGELOG.md | ||
include CONTRIBUTING.md | ||
include LICENSE | ||
include README.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Empty file.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,65 +1,52 @@ | ||
#! /usr/bin/env python | ||
# -*- coding: utf-8 -*- | ||
|
||
|
||
"""OpenFisca -- a versatile microsimulation free software | ||
OpenFisca includes a framework to simulate any tax and social system. | ||
""" | ||
|
||
|
||
from setuptools import setup, find_packages | ||
|
||
with open('README.md') as file: | ||
long_description = file.read() | ||
|
||
classifiers = """\ | ||
Development Status :: 2 - Pre-Alpha | ||
License :: OSI Approved :: GNU Affero General Public License v3 | ||
Operating System :: POSIX | ||
Programming Language :: Python | ||
Programming Language :: Python :: 3.7 | ||
Topic :: Scientific/Engineering :: Information Analysis | ||
""" | ||
|
||
doc_lines = __doc__.split('\n') | ||
|
||
with open('LICENSE') as file: | ||
license = file.read() | ||
|
||
setup( | ||
name = 'OpenFisca-France-Data', | ||
version = '0.8.2', | ||
author = 'OpenFisca Team', | ||
author_email = 'contact@openfisca.fr', | ||
classifiers = [classifier for classifier in classifiers.split('\n') if classifier], | ||
description = doc_lines[0], | ||
keywords = 'benefit microsimulation social tax', | ||
license = 'http://www.fsf.org/licensing/licenses/agpl-3.0.html', | ||
long_description = '\n'.join(doc_lines[2:]), | ||
url = 'https://github.com/openfisca/openfisca-france-data', | ||
data_files = [ | ||
# ('share/locale/fr/LC_MESSAGES', ['openfisca_france_data/i18n/fr/LC_MESSAGES/openfisca-france-data.mo']), | ||
name = "OpenFisca-France-Data", | ||
version = "0.8.2", | ||
description = "OpenFisca-France module to work with French survey data (ERFS and ERFS-FPR)", | ||
long_description = long_description, | ||
author = "OpenFisca Team", | ||
author_email = "contact@openfisca.fr", | ||
url = "https://github.com/openfisca/openfisca-france-data", | ||
license = license, | ||
keywords = "tax benefit social survey data microsimulation", | ||
classifiers = [ | ||
"Development Status :: 2 - Pre-Alpha", | ||
"License :: OSI Approved :: GNU Affero General Public License v3", | ||
"Operating System :: POSIX", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3.7", | ||
"Topic :: Scientific/Engineering :: Information Analysis", | ||
], | ||
include_package_data = True, | ||
extras_require = { | ||
'test': [ | ||
'autopep8 >= 1.4.0, < 1.5.0', | ||
'flake8 >= 3.7.0, < 3.8.0', | ||
'mypy >= 0.670, < 1.0.0', | ||
'pytest >= 4.3.0, < 5.0.0', | ||
'pytest-cov >= 2.6.0, < 3.0.0', | ||
], | ||
}, | ||
python_requires = ">= 3.7", | ||
install_requires = [ | ||
'multipledispatch >= 0.6.0, < 1.0.0', | ||
'OpenFisca-France >= 34.0.0, < 35.0.0', | ||
'OpenFisca-Survey-Manager[calmar] >= 0.11.0', | ||
'pandas >= 0.20.3', | ||
'tables', # Needed by pandas.HDFStore | ||
'wquantiles >= 0.3' # To compute weighted quantiles | ||
"multipledispatch >= 0.6.0, < 1.0.0", | ||
"openfisca-core >= 25.2.2, < 30.0.0", | ||
"openFisca-france >= 39.0.0, < 40.0.0", | ||
"openFisca-survey-manager >= 0.19.1, < 1.0.0", | ||
"numexpr == 2.6.8", | ||
"pandas >= 0.20.3, < 1.0.0", | ||
"tables >= 3.0.0, < 4.0.0", # Needed by pandas.HDFStore | ||
"wquantiles >= 0.3.0, < 1.0.0" # To compute weighted quantiles | ||
], | ||
message_extractors = { | ||
'openfisca_france_data': [ | ||
('**.py', 'python', None), | ||
extras_require = { | ||
"test": [ | ||
"autopep8 >= 1.4.0, < 1.5.0", | ||
"flake8 >= 3.7.0, < 3.8.0", | ||
"ipython >= 7.5.0, < 8.0.0", | ||
"mypy >= 0.670, < 1.0.0", | ||
"pytest >= 4.3.0, < 5.0.0", | ||
"pytest-cov >= 2.6.0, < 3.0.0", | ||
], | ||
}, | ||
packages = find_packages(), | ||
zip_safe = False, | ||
packages = find_packages(exclude = ("docs", "tests")), | ||
) |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...ance_data/tests/test_combining_reforms.py → tests/test_combining_reforms.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters