forked from mdolab/idwarp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
56 lines (42 loc) · 1.83 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
44
45
46
47
48
49
50
51
52
53
54
55
from setuptools import setup
import re
__version__ = re.findall(
r"""__version__ = ["']+([0-9\.]*)["']+""",
open('idwarp/__init__.py').read(),
)[0]
setup(name='idwarp',
version=__version__,
description="idwarp is a package deforming volume meshes with derivatives for optimization",
long_description="""
# IDWarp
[![Build Status](https://travis-ci.com/mdolab/idwarp.svg?branch=master)](https://travis-ci.com/mdolab/idwarp)
[![Documentation Status](https://readthedocs.com/projects/mdolab-idwarp/badge/?version=latest)](https://mdolab-idwarp.readthedocs-hosted.com/en/latest/?badge=latest)
IDWarp uses an inverse distance method to modify the location of mesh volume nodes given a perturbation of the surface nodes.
## Documentation
Please see the [documentation](https://mdolab-idwarp.readthedocs-hosted.com/en/latest/) for installation details and API documentation.
To locally build the documentation, enter the `doc` folder and enter `make html` in terminal.
You can then view the built documentation in the `_build` folder.
## Citation
IDWarp is based on the theory presented in [this journal article](https://doi.org/10.1016/j.jcp.2011.09.021).
""",
long_description_content_type="text/markdown",
keywords='mesh-warping warping mesh mesh-deformation optimization',
author='',
author_email='',
url='https://github.com/mdolab/idwarp',
license='Apache License Version 2.0',
packages=[
'idwarp',
],
package_data={
'idwarp': ['*.so']
},
install_requires=[
'numpy>=1.16',
'petsc4py>=3.11',
'mpi4py>=3.0',
],
classifiers=[
"Operating System :: Linux",
"Programming Language :: Python, Fortran"]
)