-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
47 lines (43 loc) · 1.22 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
# -*- coding: utf-8 -*-
"""
"""
from setuptools import setup, find_packages
import runpy
from os.path import dirname, join
HERE = dirname(__file__)
with open(join(HERE, 'README.md'), "rb") as f:
long_description = f.read().decode("utf-8")
setup(
name='vtkplotlib',
version=runpy.run_path(join(HERE, "vtkplotlib/_version.py"))["__version__"],
description='High level 3D graphics and plotting powered by VTK',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://vtkplotlib.readthedocs.io/en/latest/index.html',
author='Brénainn Woodsend',
author_email='[email protected]',
license='MIT',
packages=find_packages(exclude=("tests",)),
include_package_data=True,
install_requires=[
"vtk",
"numpy",
"matplotlib",
],
zip_safe=False,
extras_require={
"test_minimal": ["pytest", "pytest-order"],
"test_full": [
"pytest",
"pytest-order",
"PyQt6",
"numpy-stl",
"namegenerator",
"pillow",
],
},
entry_points={
"pyinstaller40": ["hook-dirs = vtkplotlib.data:_get_hooks_dir"]
},
python_requires=">=3.6",
)