-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
23 lines (20 loc) · 886 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, find_packages
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='taylanets',
version='0.0.1',
description='A module for training deep neural networks, based on Taylor Lagrange expansions with learned mean-value point, to provide accurate solutions of ODEs and learn unkown dynamics from sampled trajectories',
license="GNU 3.0",
long_description=long_description,
author='Franck Djeumou and Cyrus Neary',
author_email='fdjeumou@utexas.edu, cneary@utexas.edu',
url="https://github.com/wuwushrek/TayLaNets.git",
packages=find_packages(),
# packages=['taylanets'],
# package_dir={'taylanets': 'taylanets/'},
install_requires=_parse_requirements('requirements.txt'),
)