forked from Wobbl/Wobuzz
Made the project also work with "pip install ." (without "-e")
This commit is contained in:
parent
905f157ee0
commit
3685f25882
7 changed files with 24 additions and 16 deletions
4
setup.py
4
setup.py
|
@ -16,7 +16,7 @@ setuptools.setup(
|
|||
url="https://teapot.informationsanarchistik.de/Wobbl/Wobuzz",
|
||||
author="The Wobbler",
|
||||
author_email="emil@i21k.de",
|
||||
packages=["wobuzz"],
|
||||
packages=setuptools.find_packages(include=["wobuzz", "wobuzz.*"]),
|
||||
package_data={"": ["*.txt"]},
|
||||
install_requires=[
|
||||
"PyQt6",
|
||||
|
@ -26,6 +26,6 @@ setuptools.setup(
|
|||
"wobbl_tools @ git+https://teapot.informationsanarchistik.de/Wobbl/wobbl_tools@main#egg=wobbl_tools"
|
||||
],
|
||||
entry_points={
|
||||
"console_scripts": ["wobuzz=wobuzz.command_line"],
|
||||
"console_scripts": ["wobuzz=wobuzz.command_line:main"],
|
||||
}
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue