forked from NeuroDiffGym/neurodiffeq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (34 loc) · 1.16 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
33
34
35
36
37
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
with open("requirements.txt", "r") as fh:
requirements = [line.strip() for line in fh.read().split('\n') if line.strip() != '']
setuptools.setup(
name="neurodiffeq",
version="0.2.2",
author="odegym",
author_email="[email protected]",
description="A light-weight & flexible library for solving differential equations using neural networks based on PyTorch. ",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/odegym/neurodiffeq",
download_url="https://github.com/odegym/neurodiffeq/archive/v0.2.2.tar.gz",
keywords=[
"neural network",
"deep learning",
"differential equation",
"ODE",
"PDE",
"spectral method",
"numerical method",
"pytorch",
],
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
install_requires=requirements,
)