-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
35 lines (33 loc) · 1.22 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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
keywords = ["radiative transfer", "emulation", "deep learning", "climart", "dataset", "pytorch", "mila", "eccc"]
setup(
name='climart',
version='0.1.0',
packages=find_packages(),
url='https://github.com/RolnickLab/climart',
license='CC BY 4.0',
author='Salva Rühling Cachay, Venkatesh Ramesh',
author_email='',
keywords=keywords,
description='A comprehensive, large-scale dataset for'
' benchmarking neural network emulators of the'
' radiation component in climate and weather models.',
long_description=long_description,
long_description_content_type="text/markdown",
python_requires=">=3.7.0",
install_requires=[
"torch>=1.7.1",
"scikit-learn",
],
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
)