-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
23 lines (18 loc) · 986 Bytes
/
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
from setuptools import setup
with open("README.md", 'r') as f:
long_description = f.read()
def _parse_requirements(requirements_txt_path):
with open(requirements_txt_path) as fp:
return fp.read().splitlines()
setup(
name='physics_constrained_nn',
version='0.0.1',
description='A module for training neural networks of unknown dynamical systems that can incorporate physics knowledge in form of structural knowledge of constraints on the internal state of the model. Also contains robustness improvements made by Santiago Andrés Serrano-Vacca.',
license="GNU 3.0",
long_description=long_description,
author='Franck Djeumou, Cyrus Neary, Santiago Serrano',
author_email='fdjeumou@utexas.edu, cneary@utexas.edu, santiagoserrano334@gmail.com',
url="https://github.com/santiago-a-serrano/robust_physics_constrained_nn.git",
packages=['physics_constrained_nn'],
package_dir={'physics_constrained_nn': 'physics_constrained_nn'},
)