-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
26 lines (25 loc) · 848 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
from setuptools import setup, find_packages
setup(
name = 'torch-cfd',
packages=find_packages(include=['torch_cfd', 'torch_cfd.*']),
version='{{VERSION_PLACEHOLDER}}',
license='Apache-2.0',
description = 'PyTorch CFD',
long_description='PyTorch Computational Fluid Dynamics Library',
long_description_content_type="text/markdown",
author = 'Shuhao Cao',
author_email = '[email protected]',
url = 'https://github.com/scaomath/torch-cfd',
keywords = ['pytorch', 'cfd', 'pde', 'spectral'],
install_requires=[
'numpy',
'torch>=2.0.1',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Mathematics',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.8',
],
)