forked from energy-savings-scheme/openfisca_nsw_safeguard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (34 loc) · 1.53 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name="openfisca_nsw_covid_legislation",
version="0.0.1",
author="Department of Customer Service - NSW Government",
author_email = '[email protected]',
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 for NSW's Covid legislation, specifically the Public Health (COVID-19 Additional Restrictions for Delta Outbreak) Order (No 2) 2021",
keywords = 'NSW Public Health (COVID Delta Restrictions) Order',
license="http://www.fsf.org/licensing/licenses/agpl-3.0.html",
url = "https://github.com/Openfisca-NSW/openfisca_nsw_covid_legislation",
include_package_data = True, # Will read MANIFEST.in
data_files = [],
install_requires = [
'OpenFisca-Core[web-api] @ git+https://github.com/energy-savings-scheme/openfisca-core.git',
'openfisca_nsw_base @ git+https://github.com/Openfisca-NSW/openfisca_nsw_base.git'
],
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(),
)