forked from pyvista/pyvistaqt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (42 loc) · 1.42 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
"""
Installation file for python pyvistaqt module
"""
import os
from io import open as io_open
from setuptools import setup
package_name = 'pyvistaqt'
__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.rst')
setup(
name=package_name,
packages=[package_name, package_name],
version=__version__,
description='pyvista qt plotter',
long_description=io_open(readme_file, encoding="utf-8").read(),
author='PyVista Developers',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Information Analysis',
'License :: OSI Approved :: MIT License',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: MacOS',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
url='https://github.com/pyvista/pyvistaqt',
keywords='vtk numpy plotting mesh qt pyqt',
python_requires='>=3.5.*',
install_requires=['pyvista>=0.25.0',
'PyQt5>=5.11.3',
],
)