-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (34 loc) · 979 Bytes
/
setup.py
File metadata and controls
38 lines (34 loc) · 979 Bytes
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
import os
import setuptools
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, "DeepAnalogs", "version.py")) as fp:
exec(fp.read())
setuptools.setup(
name="DeepAnalogs",
version=__version__,
author="Weiming Hu",
author_email="huweiming950714@gmail.com",
description="Training a deep network for weather analogs",
url="https://github.com/Weiming-Hu/DeepAnalogs",
packages=setuptools.find_packages(),
entry_points={
"console_scripts": [
"deep_analogs_train = DeepAnalogs.train:main",]},
python_requires=">=3",
license='LICENSE',
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
'prettytable',
'pyyaml',
'netCDF4',
'tqdm',
'bottleneck',
'numpy',
'torch',
'scikit-learn',
],
)