-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
59 lines (57 loc) · 1.69 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
longdesc = fh.read()
setuptools.setup(
name="oguk",
version="0.2.0",
author="Richard W. Evans and Jason DeBacker",
license="CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
description="United Kingdom Calibration for OG-Core",
long_description_content_type="text/markdown",
long_description=longdesc,
url="https://github.com/PSLmodels/OG-UK/",
download_url="https://github.com/PSLmodels/OG-UK/",
project_urls={
"Issue Tracker": "https://github.com/PSLmodels/OG-UK/issues",
},
packages=["oguk"],
package_data={
"oguk": [
"oguk_default_parameters.json",
"data/*",
]
},
include_packages=True,
python_requires=">=3.7.7, <3.11",
install_requires=[
"numpy",
"scipy",
"pandas",
"matplotlib",
"dask",
"distributed",
"ogcore",
"pandas-datareader",
],
extras_require={
"dev": [
"pytest",
"pytest-cov",
"pytest-pycodestyle",
"black",
],
},
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries :: Python Modules",
],
tests_require=["pytest"],
)