-
Notifications
You must be signed in to change notification settings - Fork 45
/
setup.py
56 lines (50 loc) · 1.88 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
from __future__ import print_function
from setuptools import setup, find_packages
from glob import glob
import os
here = os.path.dirname(os.path.abspath(__file__))
is_repo = os.path.exists(os.path.join(here, ".git"))
from distutils import log
log.set_verbosity(log.DEBUG)
log.info("setup.py entered")
log.info("$PATH=%s", os.environ["PATH"])
LONG_DESCRIPTION = "An extension to render cadquery objects in JupyterLab via pythreejs"
setup_args = {
"name": "jupyter_cadquery",
"version": "3.5.2",
"description": "An extension to render cadquery objects in JupyterLab via pythreejs",
"long_description": LONG_DESCRIPTION,
"include_package_data": True,
"python_requires": ">=3.8",
"install_requires": [
"webcolors~=1.12",
"voila~=0.3.5",
"numpy-quaternion>=2022.4.1",
"cad-viewer-widget~=1.4.0",
"cachetools~=5.2.0",
],
"extras_require": {
"dev": {"jupyter-packaging", "cookiecutter", "twine", "bumpversion", "black", "pylint", "pyYaml"},
"prod": {"cadquery @ git+https://github.com/CadQuery/cadquery@master"},
},
"packages": find_packages(),
"scripts": ["jcv", "jcv.cmd"],
"zip_safe": False,
"author": "Bernhard Walter",
"author_email": "[email protected]",
"url": "https://github.com/bernhard-42/jupyter-cadquery",
"keywords": ["ipython", "jupyter", "widgets", "CAD", "cadquery"],
"classifiers": [
"Development Status :: 5 - Production/Stable",
"Framework :: IPython",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Multimedia :: Graphics",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
}
setup(**setup_args)