-
Notifications
You must be signed in to change notification settings - Fork 266
/
setup.py
executable file
·68 lines (57 loc) · 2.44 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
66
67
68
from setuptools import setup
with open("vedo/version.py", "r") as fh:
verstrline = fh.read()
verstr = verstrline.split("=")[1].replace("'", "").strip()
##############################################################
setup(
name="vedo",
version=verstr,
python_requires=">=3",
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",
"vedo.examples.advanced",
"vedo.examples.pyplot",
"vedo.examples.simulations",
"vedo.examples.volumetric",
"vedo.examples.other",
],
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',
},
entry_points={
"console_scripts": ["vedo=vedo.cli:execute_cli"],
},
install_requires=["vtk", "numpy", "Pygments", "typing-extensions"],
include_package_data=True,
)