-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (37 loc) · 1.05 KB
/
setup.py
File metadata and controls
38 lines (37 loc) · 1.05 KB
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
from setuptools import setup, find_packages
setup(
name="cq_cli",
version="2.3.0",
license="LICENSE",
author="Jeremy Wright",
description="Command Line Interface for executing CadQuery scripts and converting their output to another format.",
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
python_requires=">=3.9",
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
packages=find_packages(where="src"),
package_dir={"": "src"},
install_requires=[
"cadquery==2.4.0",
"cadquery_freecad_import_plugin",
],
extras_require={
"dev": [
"pytest",
"black==19.10b0",
"click==8.0.4",
],
},
entry_points={
"console_scripts": [
"cq-cli=cq_cli.main:main",
],
},
url="https://github.com/CadQuery/cq-cli",
project_urls={
"Bug Tracker": "https://github.com/CadQuery/cq-cli/issues",
},
)