-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
45 lines (41 loc) · 1.41 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
import os
from io import open as io_open
from setuptools import setup
package_name = "ipyvtklink"
__version__ = None
filepath = os.path.dirname(__file__)
version_file = os.path.join(filepath, package_name, "_version.py")
with io_open(version_file, mode="r") as fd:
exec(fd.read())
readme_file = os.path.join(filepath, "README.md")
setup(
name=package_name,
packages=[package_name,],
version=__version__,
description="ipywidget for vtkRenderWindow",
long_description=io_open(readme_file, encoding="utf-8").read(),
long_description_content_type="text/markdown",
author="Bane Sullivan",
author_email="[email protected]",
license="BSD 3-Clause",
classifiers=[
"License :: OSI Approved :: BSD License",
"Development Status :: 4 - Beta",
"Framework :: IPython",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Multimedia :: Graphics",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
url="https://github.com/Kitware/ipyvtklink",
keywords="vtk plotting jupyter",
python_requires=">=3.5.*",
install_requires=[
"ipycanvas>=0.5.0",
"ipyevents>=0.8.0",
"ipywidgets~=7.7",],
)