-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
39 lines (37 loc) · 946 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
31
32
33
34
35
36
37
38
39
import setuptools
with open("README.md", "r", encoding="utf-8") as readme_file:
readme = readme_file.read()
setuptools.setup(
name="cleo",
version="0.0.1",
author="Sebastian Wehrle",
author_email="[email protected]",
descripton="Cleo supports wind resource assessment with the Global Wind Atlas",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/sebwehrle/cleo",
project_urls={},
license="MIT License",
packages=["cleo"],
package_data={'cleo': ['resources/*.yml']},
install_requires=[
"urllib3",
"certifi",
"tqdm",
"netcdf4",
"scipy",
"numpy",
"rasterio",
"gdal",
"pandas",
"openpyxl",
"xarray",
"dask",
"rioxarray",
"xarray-spatial",
"geopandas",
"pycountry",
"pint",
"pyyaml",
]
)