-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
executable file
·32 lines (30 loc) · 1.3 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='dlacs',
version='0.1.1',
description="Deep Learning Architecture for Climate science, in short as DLACs, is a python library designed to implement deep learning algorisms to climate data for weather and climate prediction. Deep learning techniques to deal with spatial-temporal sequences, namely the Convolutional Long Short Term Memory neural netwroks (ConvLSTM), are implemented in this package. A probabilistic version of the structure is also employed, with an easy shift from ConvLSTM to Bayesian ConvLSTM (BayesConvLSTM).",
long_description=readme + '\n\n',
author="Yang Liu",
author_email='[email protected]',
url='https://github.com/geek-yang/DLACs',
packages=[
'dlacs',
],
package_dir={'dlacs':
'dlacs'},
include_package_data=True,
license="Apache Software License 2.0",
zip_safe=False,
keywords='dlacs',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
],
test_suite='tests',
)