forked from hydrogo/rainymotion
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (18 loc) · 644 Bytes
/
Copy pathsetup.py
File metadata and controls
19 lines (18 loc) · 644 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from setuptools import setup
import rainymotion
setup(
name="rainymotion",
version="0.1",
author="Georgy Ayzel",
author_email="ayzel@uni-potsdam.de, ayzelgv@gmail.com",
description=("Python library for radar-based precipitation nowcasting using optical flow techniques"),
url="https//www.github.com/hydrogo/rainymotion",
packages=["rainymotion"],
include_package_data=True,
license="MIT-License",
keywords="precipitation nowcasting radar",
classifiers=[
"Development Status :: Alpha",
"Intended Audience :: Science/Research/Education",
"License :: MIT License"]
)