forked from PML-UCF/pinn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (39 loc) · 1.38 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
40
41
42
43
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='pml-pinn',
version="0.0.3",
author='Felipe A. C. Viana, Renato G. Nascimento, Yigit Yucesan, Arinan Dourado',
description='Physics-informed neural networks',
url='https://github.com/PML-UCF/pinn',
license='MIT',
long_description=read('README.md'),
long_description_content_type="text/markdown",
packages=find_packages(),
install_requires=['numpy', 'tensorflow'],
keywords=[
'physics informed',
'neural networks',
'machine learning',
'deep learning',
'tensorflow',
'keras',
'python'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Topic :: Education',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
]
)