-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (35 loc) · 1.29 KB
/
setup.py
File metadata and controls
37 lines (35 loc) · 1.29 KB
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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name = "OpenFisca-PF",
version = "0.9.0",
author = "DSI",
author_email = "matthieu.bosc@administraction.gov.pf;philippe.perezdesanroman@administraction.gov.pf",
classifiers = [
"Development Status :: 1 - Planning",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: POSIX",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Information Analysis",
],
description = "OpenFisca tax system for PF",
keywords = "microsimulation tax calculation",
license = "http://www.fsf.org/licensing/licenses/agpl-3.0.html",
url = "https://github.com/govpf/openfisca-pf",
include_package_data = True, # Will read MANIFEST.in
data_files = [
("share/openfisca/openfisca-country-template", ["CHANGELOG.md", "LICENSE", "README.md"]),
],
install_requires = [
"OpenFisca-Core[web-api] ==43.5.0",
],
extras_require = {
"dev": [
"autopep8 ==1.5",
"flake8 >=3.5.0,<3.8.0",
"flake8-print",
"pycodestyle >=2.3.0,<2.6.0", # To avoid incompatibility with flake
]
},
packages = find_packages(),
)