forked from pangeo-data/scikit-downscale
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (34 loc) · 1.21 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
#!/usr/bin/env python
from setuptools import find_packages, setup
NAME = "scikit-downscale"
CLASSIFIERS = [
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering",
]
PACKAGES = find_packages(exclude=["*test*"])
print(f"installing {PACKAGES}")
with open("requirements.txt") as f:
install_requires = f.read().strip().split("\n")
setup(
name=NAME,
author="Joe Hamman",
author_email="jhamman@ucar.edu",
license="Apache",
classifiers=CLASSIFIERS,
description="Statistical downscaling and postprocessing models for climate and weather model simulations.",
python_requires=">=3.6",
install_requires=install_requires,
tests_require=["pytest >= 2.7.1"],
url="https://github.com/jhamman/scikit-downscale",
packages=PACKAGES,
setup_requires=["setuptools_scm", "setuptools>=30.3.0"],
version="1.0.0",
)