mirror of
https://github.com/jdegenstein/jmwright-CQ-Editor.git
synced 2025-12-19 22:24:19 +01:00
Update setup.py for pip install per u/sethfischer
from a PR on mainline
This commit is contained in:
24
setup.py
24
setup.py
@@ -16,12 +16,22 @@ def get_version(rel_path):
|
|||||||
else:
|
else:
|
||||||
raise RuntimeError("Unable to find version string.")
|
raise RuntimeError("Unable to find version string.")
|
||||||
|
|
||||||
setup(name='CQ-editor',
|
setup(
|
||||||
version=get_version('cq_editor/_version.py'),
|
name="CQ-editor",
|
||||||
|
version=get_version("cq_editor/_version.py"),
|
||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
entry_points={
|
entry_points={
|
||||||
'gui_scripts': [
|
"gui_scripts": [
|
||||||
'cq-editor = cq_editor.__main__:main',
|
"cq-editor = cq_editor.__main__:main",
|
||||||
'CQ-editor = cq_editor.__main__:main'
|
"CQ-editor = cq_editor.__main__:main",
|
||||||
]}
|
]
|
||||||
)
|
},
|
||||||
|
python_requires=">=3.8,<3.11",
|
||||||
|
install_requires=[
|
||||||
|
"logbook>=1",
|
||||||
|
"path>=16",
|
||||||
|
"PyQt5>=5",
|
||||||
|
"requests>=2,<3",
|
||||||
|
"spyder>=5,<6",
|
||||||
|
],
|
||||||
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user