-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
38 lines (26 loc) · 889 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
from os import getenv
from setuptools import find_packages, setup
def install_requires():
return []
def get_version():
with open("VERSION") as fp:
version = fp.read().strip()
return getenv("PKG_VERSION", version)
def get_description():
return "Code for working with ensemble members and predicting ensemble members (probabilistic predictions)."
def get_pkg_name():
return "ensemble"
def get_scripts():
return []
setup(
name=get_pkg_name(),
version=get_version(),
description=get_description(),
install_requires=install_requires(),
author="The Climate Corporation, Steven Brey, Hunter Merrill, Tony Eckel",
author_email="[email protected]",
include_package_data=True,
packages=find_packages(exclude=("test",)),
scripts=get_scripts(),
package_data={"ensemble": ["notebooks/*", "docs/resources/*"]},
)