forked from tamnva/hydroecolstm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (36 loc) · 1.21 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
from setuptools import setup
setup(
name='hydroecolstm',
version='0.1.0',
description='A python package for HydroEcological Modelling using LSTM',
url='https://github.com/tamnva/HydroPyTorch',
author='Tam V. Nguyen',
author_email='[email protected]',
license=' GPL-3.0',
packages=['hydroecolstm',
'hydroecolstm.data',
'hydroecolstm.interface',
'hydroecolstm.utility',
'hydroecolstm.model'],
python_requires='>=3.8',
install_requires=['pandas',
'numpy',
'torch',
'pandastable',
'tkcalendar',
'PyYAML',
'pathlib',
'tkinter',
'customtkinter',
'CTkToolTip',
'CTkMessagebox',
'CTkListbox'
],
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GPL-3.0 license ',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
],
)