forked from bernhard-42/vscode-ocp-cad-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (33 loc) · 1.18 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
from setuptools import setup, find_packages
setup_args = {
"name": "ocp_vscode",
"version": "1.2.2",
"description": "OCP CAD Viewer for VSCode",
"long_description": "An extension to show OCP cad CAD objects (CadQuery, build123d) in VS Code via pythreejs",
"include_package_data": True,
"python_requires": ">=3.8",
"install_requires": [
"ocp-tessellate>=1.1.2,<1.2.2",
"requests",
"orjson",
"websockets>=11.0,<11.1",
],
"packages": find_packages(),
"zip_safe": False,
"author": "Bernhard Walter",
"author_email": "[email protected]",
"url": "https://github.com/bernhard-42/vscode-ocp-cad-viewer",
"keywords": ["vscode", "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.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
}
setup(**setup_args)