forked from marcomusy/vedo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·65 lines (63 loc) · 2.63 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
56
57
58
59
60
61
62
63
64
65
from setuptools import setup
try:
VERSIONFILE = "vedo/version.py"
verstrline = open(VERSIONFILE, "rt").read()
verstr = verstrline.split("=")[1].replace("\n", "").replace("'", "")
except:
verstr = "unknown"
##############################################################
setup(
name="vedo",
version=verstr,
python_requires=">=3",
packages=[
"vedo",
"vedo.examples.basic",
"vedo.examples.advanced",
"vedo.examples.pyplot",
"vedo.examples.simulations",
"vedo.examples.volumetric",
"vedo.examples.other",
"vedo.examples.other.dolfin",
"vedo.examples.other.trimesh",
],
package_dir={
'vedo': 'vedo',
'vedo.examples.basic': 'examples/basic',
'vedo.examples.advanced': 'examples/advanced',
'vedo.examples.pyplot': 'examples/pyplot',
'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',
},
include_package_data=True,
entry_points={
"console_scripts": ["vedo=vedo.cli:execute_cli"],
},
install_requires=["vtk<9.1.0", "numpy", "Deprecated"],
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",
license="MIT",
url="https://github.com/marcomusy/vedo",
keywords="vtk 3D 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",
],
)