-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
33 lines (30 loc) · 906 Bytes
/
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
"""``omfvista``: 3D visualization for the Open Mining Format (omf)
"""
import setuptools
__version__ = "0.3.0"
with open("README.rst", "r") as f:
long_description = f.read()
setuptools.setup(
name="omfvista",
version=__version__,
author="Bane Sullivan",
author_email="[email protected]",
description="3D visualization for the Open Mining Format (omf)",
long_description=long_description,
long_description_content_type="text/x-rst",
url="https://github.com/OpenGeoVis/omfvista",
packages=setuptools.find_packages(),
install_requires=[
"omf>=1.0.0",
"vectormath>=0.2.2",
"pyvista>=0.20.1",
"numpy",
"matplotlib",
],
classifiers=(
"Programming Language :: Python",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Natural Language :: English",
),
)