-
-
Notifications
You must be signed in to change notification settings - Fork 51
/
setup.py
32 lines (28 loc) · 1.06 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
"""Setup"""
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="graph_weather",
version="1.0.84",
packages=find_packages(),
url="https://github.com/openclimatefix/graph_weather",
license="MIT License",
company="Open Climate Fix Ltd",
author="Jacob Bieker",
install_requires=install_requires,
extras_requires={"vis": ["matplotlib"], "data": ["pysolar"]},
long_description=long_description,
long_description_content_type="text/markdown",
author_email="[email protected]",
description="Weather Forecasting with Graph Neural Networks",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
],
)