-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 682 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 682 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from distutils.core import setup
from setuptools import find_packages
setup(
name='RNN_Adaptation',
packages=find_packages(),
version='0.0.1',
description='Fast model adaptation for system identification with deep learning',
keywords=["control", "transfer learning", "system identification"],
include_package_data=True,
python_requires='>=3.8.*',
classifiers=[
'Natural Language :: English',
'Programming Language :: Python :: 3.8',
],
author='Forgione, M. and Muni, A. and Gallieri, M. and Piga, D.',
author_email='marco.forgione@supsi.ch',
url='',
requires=[],
zip_safe=True,
license='MIT'
)
# EOF