-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathsetup.py
39 lines (37 loc) · 1.32 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
38
39
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="NeuralSolvers",
version="0.1.0",
author="Nico Hoffmann, Patrick Stiller, Maksim Zhdanov, Jeyhun Rustamov, Raj Dhansukhbhai Sutariya",
author_email="[email protected]",
description="A framework for solving partial differential equations (PDEs) and inverse problems using physics-informed neural networks (PINNs) at scale",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Photon-AI-Research/NeuralSolvers",
packages=find_packages(),
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Mathematics",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.9",
install_requires=[
],
extras_require={
},
entry_points={
"console_scripts": [
"neuralsolvers=NeuralSolvers.cli:main",
],
},
include_package_data=True,
package_data={
"NeuralSolvers": ["examples/*"],
},
)