-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
82 lines (73 loc) · 1.86 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# Setup file for project OpenAirClim
import os
from setuptools import setup
about = {}
with open("openairclim/__about__.py", mode="r", encoding="utf8") as fp:
exec(fp.read(), about)
def read(fname):
"""Utility function for reading the README file
Args:
fname (str): file name
Returns:
str: content of the file
"""
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="openairclim",
version=about["__version__"],
author=about["__author__"],
author_email=about["__email__"],
description=("This setup.py file installs OpenAirClim."),
keywords=["climate", "aviation"],
license=about["__license__"],
url=about["__url__"],
packages=["openairclim"],
long_description=read("README.md"),
classifiers=[
"Topic :: Scientific/Engineering :: Atmospheric Science",
"Programming Language :: Python :: 3 :: Only",
"Development Status :: 3 - Alpha",
],
python_requires="==3.11.5",
install_requires=[
"setuptools",
"joblib",
"numpy",
"pandas",
"toml",
"matplotlib",
"cf-units",
"xarray",
"netcdf4",
"scipy",
"deepmerge",
],
extras_require={
"dev": [
"platformdirs",
"black",
"lazy-object-proxy",
"jupyterlab",
"openssl",
"sphinx",
"ipykernel",
"scikit-learn",
"pytest-cov",
"prospector",
"pytest-httpserver",
"ca-certificates",
"certifi",
"pylint",
"wrapt",
"mypy",
"beautifulsoup4",
"bottleneck",
"cartopy",
"pytest",
"pyroma",
"isort",
"ipympl",
"openpyxl",
]
},
)