forked from openclimatefix/skillful_nowcasting
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (36 loc) · 1.2 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
39
from pathlib import Path
from setuptools import find_packages, setup
this_directory = Path(__file__).parent
install_requires = (this_directory / "requirements.txt").read_text().splitlines()
long_description = (this_directory / "README.md").read_text()
setup(
name="dgmr",
version="1.3.4",
packages=find_packages(),
url="https://github.com/openclimatefix/skillful_nowcasting",
license="MIT License",
company="Open Climate Fix Ltd",
author="Jacob Bieker",
author_email="jacob@openclimatefix.org",
description="PyTorch Skillful Nowcasting GAN Implementation",
keywords=[
"artificial intelligence",
"deep learning",
"transformer",
"attention mechanism",
"metnet",
"forecasting",
"remote-sensing",
"gan",
],
install_requires=install_requires,
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
],
)