forked from neuraloperator/neuraloperator
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
26 lines (22 loc) · 780 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
24
25
26
import os
from setuptools import setup
import setuptools
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
here = os.path.abspath(os.path.dirname(__file__))
# What packages are required for this module to be executed?
try:
with open(os.path.join(here, 'requirements.txt'), encoding='utf-8') as f:
required = f.read().split('\n')
except:
required = []
setup(
name = "fourier_neural_operator",
version = "0.17",
description = ("Library and exemples to use the fourier neural operator"),
packages=setuptools.find_packages(),
url='https://github.com/Forbu/fourier_neural_operator',
long_description=read('README.md'),
install_requires=required,
long_description_content_type='text/markdown',
)