mirror of
https://github.com/StuffAnThings/qbit_manage.git
synced 2025-11-10 00:10:46 +08:00
Fix broken pypi builds
build: add qbit_manage.py and web-ui to package - Include qbit_manage.py in MANIFEST.in - Add py_modules and package_data to setup.py for proper packaging of web-ui and VERSION files
This commit is contained in:
parent
849dc1e1a8
commit
498fd90e71
3 changed files with 6 additions and 1 deletions
|
|
@ -2,4 +2,5 @@ include README.md
|
|||
include LICENSE
|
||||
include VERSION
|
||||
include SUPPORTED_VERSIONS.json
|
||||
include qbit_manage.py
|
||||
recursive-include web-ui *
|
||||
|
|
|
|||
2
VERSION
2
VERSION
|
|
@ -1 +1 @@
|
|||
4.6.3-develop1
|
||||
4.6.3-develop2
|
||||
|
|
|
|||
4
setup.py
4
setup.py
|
|
@ -22,6 +22,10 @@ setup(
|
|||
name="qbit_manage",
|
||||
# Packages to include into the distribution
|
||||
packages=find_packages("."),
|
||||
py_modules=["qbit_manage"],
|
||||
package_data={
|
||||
"modules": ["../web-ui/**/*", "../VERSION"],
|
||||
},
|
||||
include_package_data=True,
|
||||
# Start with a small number and increase it with
|
||||
# every change you make https://semver.org
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue