forked from carbonplan/cmip6-downscaling
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (29 loc) · 1.03 KB
/
Copy pathsetup.py
File metadata and controls
37 lines (29 loc) · 1.03 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
#!/usr/bin/env python
"""The setup script."""
import pathlib
from setuptools import find_packages, setup
with open("requirements.txt") as f:
INSTALL_REQUIRES = f.read().strip().split("\n")
LONG_DESCRIPTION = pathlib.Path("README.md").read_text()
PYTHON_REQUIRES = ">=3.8"
description = "climate downscaling using cmip6 data"
setup(
name="cmip6-downscaling",
description=description,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
maintainer="Joe Hamman",
maintainer_email="joe@carbonplan.org",
url="https://github.com/carbonplan/cmip6-downscaling",
packages=find_packages(),
include_package_data=True,
python_requires=PYTHON_REQUIRES,
install_requires=INSTALL_REQUIRES,
extras_require={
"deepsd": ["tensorflow", "tensorflow-io"],
"analysis": ["cartopy", "seaborn", "carbonplan[styles]"],
},
license="MIT",
keywords="carbon, data, climate",
use_scm_version={"version_scheme": "post-release", "local_scheme": "dirty-tag"},
)