mirror of
https://github.com/cryptoadvance/specter-desktop.git
synced 2026-08-13 12:33:29 +02:00
fix for proper namespace package cryptoadvance (#524)
This commit is contained in:
parent
a2cf195561
commit
0282c44b65
2 changed files with 2 additions and 2 deletions
4
setup.py
4
setup.py
|
|
@ -1,6 +1,6 @@
|
|||
from glob import glob
|
||||
|
||||
from setuptools import find_packages, setup
|
||||
from setuptools import find_namespace_packages, setup
|
||||
|
||||
with open("requirements.txt") as f:
|
||||
install_reqs = f.read().strip().split("\n")
|
||||
|
|
@ -26,7 +26,7 @@ setup(
|
|||
long_description=long_description,
|
||||
long_description_content_type="text/markdown",
|
||||
url="https://github.com/cryptoadvance/specter-desktop",
|
||||
packages=find_packages("src"),
|
||||
packages=find_namespace_packages("src", include=["cryptoadvance.*"]),
|
||||
package_dir={"": "src"},
|
||||
# take METADATA.in into account, include that stuff as well (static/templates)
|
||||
include_package_data=True,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue