-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
38 lines (37 loc) · 1.36 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name="openfisca_nsw_ess_nabers",
version="1.3.2",
author="OpenFisca Team",
author_email = 'sara.falamaki@customerservice.nsw.gov.au',
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: POSIX",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Information Analysis",
],
description="An OpenFisca extension that adds some variables to an already-existing tax and benefit system",
keywords = 'benefit microsimulation social tax',
license="http://www.fsf.org/licensing/licenses/agpl-3.0.html",
url = "https://github.com/Openfisca-NSW/openfisca_nsw_ess_nabers",
include_package_data = True, # Will read MANIFEST.in
data_files = [
("share/openfisca/openfisca_nsw_ess_nabers", ["CHANGELOG.md", "LICENSE", "README.md"]),
],
install_requires = [
'OpenFisca_nsw_base',
'pandas',
'xlrd'
],
extras_require = {
"dev": [
"autopep8 ==1.4.4",
"flake8 >=3.5.0,<3.8.0",
"flake8-print",
"pycodestyle >=2.3.0,<2.6.0", # To avoid incompatibility with flake
]
},
packages=find_packages(),
)