-
-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathsetup.py
executable file
·29 lines (25 loc) · 896 Bytes
/
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
"""Setup"""
from pathlib import Path
from setuptools import find_packages, setup
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="graph_weather",
version="1.0.104",
packages=find_packages(),
url="https://github.com/openclimatefix/graph_weather",
license="MIT License",
company="Open Climate Fix Ltd",
author="Jacob Bieker",
long_description=long_description,
long_description_content_type="text/markdown",
author_email="jacob@bieker.tech",
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",
],
)