forked from AIStream-Peelout/flow-forecast
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
18 lines (16 loc) · 686 Bytes
/
setup.py
File metadata and controls
18 lines (16 loc) · 686 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from setuptools import setup
import os
library_folder = os.path.dirname(os.path.realpath(__file__))
requirementPath = f'{library_folder}/requirements.txt'
install_requires = []
if os.path.isfile(requirementPath):
with open(requirementPath) as f:
install_requires = f.read().splitlines()
setup(
name='flood_forecast',
version='0.01dev',
packages=['flood_forecast', 'flood_forecast.transformer_xl', 'flood_forecast.preprocessing', 'flood_forecast.da_rnn', "flood_forecast.basic", "flood_forecast.custom"],
license='Public',
long_description='A public package for forecasting river flows and flash flood severity',
install_requires=install_requires
)