-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.cfg
67 lines (56 loc) · 1.25 KB
/
setup.cfg
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
66
67
[metadata]
name = ESEm
author = Duncan Watson-Parris
author_email = [email protected]
license = Apache
description = Earth System Emulator
long_description_content_type=text/x-rst
long_description =
A tool for emulating geophysical models including (but not limited to!) Earth System Models.
classifiers =
Development Status :: 3 - Alpha
Topic :: Scientific/Engineering
Intended Audience :: Science/Research
License :: OSI Approved :: Apache Software License
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
keywords =
climate
machine-learning
[options]
packages = find:
python_requires = >=3.7
install_requires =
tensorflow
tensorflow-probability
numpy
matplotlib
scipy
tqdm
setuptools >= 40.4 # For pkg_resources
setup_requires =
setuptools >= 40.4
setuptools_scm
[options.extras_require]
keras =
keras
gpflow =
gpflow
sklearn =
sklearn
complete =
%(keras)s
%(gpflow)s
%(sklearn)s
docs =
sphinx == 4.0.2
nbsphinx >= 0.8.6
ipython
sphinx-autosummary-accessors
sphinx_rtd_theme
[tool:pytest]
python_files = test_*.py
testpaths = tests
markers =
slow: slow tests