forked from PyPSA/atlite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
65 lines (60 loc) · 1.77 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
# -*- coding: utf-8 -*-
# SPDX-FileCopyrightText: 2016 - 2023 The Atlite Authors
#
# SPDX-License-Identifier: MIT
from codecs import open
from setuptools import find_packages, setup
with open("README.rst", encoding="utf-8") as f:
long_description = f.read()
setup(
name="atlite",
author="The Atlite Authors",
author_email="[email protected]",
description="Library for fetching and converting weather data to power systems data",
long_description=long_description,
long_description_content_type="text/x-rst",
url="https://github.com/PyPSA/atlite",
license="MIT",
packages=find_packages(exclude=["doc", "test"]),
include_package_data=True,
python_requires=">=3.6",
install_requires=[
"numpy<2",
"scipy",
"pandas>=0.25",
"bottleneck",
"numexpr",
"xarray>=0.20",
"netcdf4",
"dask>=2021.10.0",
"toolz",
"requests",
"pyyaml",
"rasterio!=1.2.10",
"shapely",
"progressbar2",
"tqdm",
"pyproj>=2",
"geopandas",
"cdsapi",
],
extras_require={
"docs": [
"numpydoc",
"sphinx",
"sphinx-book-theme",
"nbsphinx",
"nbsphinx-link",
"docutils==0.20", # Just temporarily until sphinx-docutils is updated (see https://github.com/sphinx-doc/sphinx/issues/12340)
],
"dev": ["pre-commit", "pytest", "pytest-cov", "matplotlib"],
},
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
],
)