-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
22 lines (19 loc) · 890 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
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',
license="GNU 3.0",
long_description=long_description,
author='Franck Djeumou and Cyrus Neary',
author_email='[email protected], [email protected]',
url="https://github.com/wuwushrek/physics_constrained_nn.git",
packages=['physics_constrained_nn'],
package_dir={'physics_constrained_nn': 'physics_constrained_nn/'},
install_requires=_parse_requirements('requirements.txt'),
)