-
Notifications
You must be signed in to change notification settings - Fork 271
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
filter out triangle strips from extrusion
- Loading branch information
Showing
14 changed files
with
87 additions
and
90 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,8 @@ | ||
from setuptools import setup | ||
|
||
try: | ||
VERSIONFILE = "vedo/version.py" | ||
verstrline = open(VERSIONFILE, "rt").read() | ||
verstr = verstrline.split("=")[1].replace("\n", "").replace("'", "") | ||
except: | ||
verstr = "unknown" | ||
with open("vedo/version.py", "r") as fh: | ||
verstrline = fh.read() | ||
verstr = verstrline.split("=")[1].replace("'", "").strip() | ||
|
||
############################################################## | ||
setup( | ||
|
@@ -16,6 +13,31 @@ | |
license="MIT", | ||
license_files=['LICENSE', 'FONT.LICENSE'], | ||
|
||
description="A python module for scientific analysis and visualization of 3D objects and point clouds based on VTK and Numpy.", | ||
long_description="A python module for scientific visualization, analysis of 3D objects and point clouds based on VTK and Numpy. Check out https://vedo.embl.es for documentation.", | ||
|
||
author="Marco Musy", | ||
author_email="[email protected]", | ||
maintainer="Marco Musy", | ||
url="https://github.com/marcomusy/vedo", | ||
|
||
keywords="vtk numpy 3D science analysis visualization mesh", | ||
classifiers=[ | ||
"Intended Audience :: Science/Research", | ||
"Intended Audience :: Education", | ||
"Intended Audience :: Information Technology", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: MIT License", | ||
"Topic :: Scientific/Engineering :: Visualization", | ||
"Topic :: Scientific/Engineering :: Physics", | ||
"Topic :: Scientific/Engineering :: Medical Science Apps.", | ||
"Topic :: Scientific/Engineering :: Information Analysis", | ||
"Operating System :: Microsoft :: Windows", | ||
"Operating System :: POSIX", | ||
"Operating System :: MacOS", | ||
], | ||
|
||
packages=[ | ||
"vedo", | ||
"vedo.examples.basic", | ||
|
@@ -24,8 +46,6 @@ | |
"vedo.examples.simulations", | ||
"vedo.examples.volumetric", | ||
"vedo.examples.other", | ||
"vedo.examples.other.dolfin", | ||
"vedo.examples.other.trimesh", | ||
], | ||
|
||
package_dir={ | ||
|
@@ -36,8 +56,6 @@ | |
'vedo.examples.simulations': 'examples/simulations', | ||
'vedo.examples.volumetric': 'examples/volumetric', | ||
'vedo.examples.other': 'examples/other', | ||
'vedo.examples.other.dolfin': 'examples/other/dolfin', | ||
'vedo.examples.other.trimesh': 'examples/other/trimesh', | ||
}, | ||
|
||
entry_points={ | ||
|
@@ -47,27 +65,4 @@ | |
install_requires=["vtk", "numpy", "Pygments"], | ||
include_package_data=True, | ||
|
||
description="A python module for scientific analysis and visualization of 3D objects and point clouds based on VTK.", | ||
long_description="A python module for scientific visualization, analysis of 3D objects and point clouds based on VTK. Check out https://vedo.embl.es for documentation.", | ||
|
||
author="Marco Musy", | ||
author_email="[email protected]", | ||
maintainer="Marco Musy", | ||
url="https://github.com/marcomusy/vedo", | ||
keywords="vtk 3D science analysis visualization mesh numpy", | ||
classifiers=[ | ||
"Intended Audience :: Science/Research", | ||
"Intended Audience :: Education", | ||
"Intended Audience :: Information Technology", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: MIT License", | ||
"Topic :: Scientific/Engineering :: Visualization", | ||
"Topic :: Scientific/Engineering :: Physics", | ||
"Topic :: Scientific/Engineering :: Medical Science Apps.", | ||
"Topic :: Scientific/Engineering :: Information Analysis", | ||
"Operating System :: Microsoft :: Windows", | ||
"Operating System :: POSIX", | ||
"Operating System :: MacOS", | ||
], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.