forked from pygfx/pygfx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (37 loc) · 1.17 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 re
from setuptools import find_packages, setup
NAME = "pygfx"
SUMMARY = "A threejs-like render engine based on wgpu"
with open(f"{NAME}/__init__.py") as fh:
VERSION = re.search(r"__version__ = \"(.*?)\"", fh.read()).group(1)
runtime_deps = [
"numpy",
"wgpu>=0.5.8,<0.6.0",
"Jinja2",
]
setup(
name=NAME,
version=VERSION,
packages=find_packages(
exclude=["tests", "tests.*", "examples", "examples.*", "exp", "exp.*"]
),
python_requires=">=3.6.0",
install_requires=runtime_deps,
license="BSD 2-Clause",
description=SUMMARY,
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Almar Klein",
author_email="[email protected]",
url="https://github.com/pygfx/pygfx",
data_files=[("", ["LICENSE"])],
zip_safe=True,
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Visualization",
],
)