-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
62 lines (54 loc) · 1.58 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
import re
from setuptools import find_packages, setup
NAME = "gfxmorph"
SUMMARY = "Morphing meshes"
with open(f"{NAME}/__init__.py", "rb") as fh:
init_text = fh.read().decode()
VERSION = re.search(r"__version__ = \"(.*?)\"", init_text).group(1)
runtime_deps = [
"numpy",
"pygfx",
]
extras_require = {
"dev": [
"black",
"flake8",
"flake8-black",
"pep8-naming",
"pytest",
],
}
setup(
name=NAME,
version=VERSION,
packages=find_packages(
exclude=["tests", "tests.*", "examples", "examples.*", "exp", "exp.*"]
),
# package_data={f"{NAME}.data_files": resources_globs},
python_requires=">=3.8.0",
install_requires=runtime_deps,
extras_require=extras_require,
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/gfxmorph",
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",
],
# entry_points={
# "pyinstaller40": [
# "hook-dirs = pygfx.__pyinstaller:get_hook_dirs",
# "tests = pygfx.__pyinstaller:get_test_dirs",
# ],
# },
)