forked from PSLmodels/OG-UK
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (33 loc) · 1.14 KB
/
setup.py
File metadata and controls
37 lines (33 loc) · 1.14 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open("README.md") as f:
longdesc = f.read()
version = "0.1.2"
config = {
"description": "OG-UK",
"long_description": longdesc,
"url": "https://github.com/PSLmodels/OG-UK/",
"download_url": "https://github.com/PLSmodels/OG-UK/",
"version": version,
"license": "CC0 1.0 Universal public domain dedication",
"packages": ["oguk"],
"include_package_data": True,
"name": "oguk",
"install_requires": ["openfisca-uk>=0.21.0", "ogcore>=0.9.0"],
"package_data": {"oguk": ["data/*"]},
"classifiers": [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: CC0 1.0 Universal public domain dedication",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Topic :: Software Development :: Libraries :: Python Modules",
],
"tests_require": ["pytest"],
}
setup(**config)