Skip to content

Commit

Permalink
[Setup][Fixed] Package discovery
Browse files Browse the repository at this point in the history
  • Loading branch information
set-soft committed Mar 21, 2024
1 parent 6f8f38d commit b68c23e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/python3
from setuptools import setup, find_packages
from setuptools import setup, find_namespace_packages
from kiauto.misc import __version__, __author__, __email__, __url__

# Use the README.md as a long description.
Expand All @@ -16,7 +16,7 @@
author_email=__email__,
url=__url__,
# Packages are marked using __init__.py
packages=find_packages(),
packages=find_namespace_packages(),
scripts=['src/eeschema_do', 'src/pcbnew_do', 'src/kicad2step_do'],
install_requires=['xvfbwrapper', 'psutil'],
include_package_data=True,
Expand Down

0 comments on commit b68c23e

Please sign in to comment.