forked from BetterRules/openfisca-aotearoa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (26 loc) · 868 Bytes
/
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
#! /usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='OpenFisca-Aotearoa',
version='9.1.0',
author='New Zealand Government, Service Innovation Lab',
author_email='[email protected]',
description=u'OpenFisca tax and benefit system for Aotearoa',
keywords='benefit microsimulation social tax',
license='http://www.fsf.org/licensing/licenses/agpl-3.0.html',
url='https://github.com/ServiceInnovationLab/openfisca-aotearoa',
include_package_data=True, # Will read MANIFEST.in
install_requires=[
'OpenFisca-Core >= 24.3.0, < 25.0',
],
extras_require={
'test': [
'flake8 >=3.4.0,<3.7.0',
'flake8-print',
'nose',
]
},
packages=find_packages(),
test_suite='nose.collector',
)