forked from marcomusy/vedo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·41 lines (39 loc) · 1.68 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
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,
packages=["vedo", "vedo.examples"],
scripts=["bin/vedo", "bin/vedo-convert"],
install_requires=["vtk<9.0.0", "numpy"],
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]",
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",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Topic :: Scientific/Engineering :: Information Analysis",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
include_package_data=True,
)