Skip to content

Commit

Permalink
fix find_packages configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
PetrDlouhy committed Aug 7, 2024
1 parent ccfd8cf commit e575443
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
9 changes: 7 additions & 2 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
global-exclude *.pyc

include README.rst
include MIT-LICENSE.txt
include requirements.txt

recursive-include admin_tools_stats *
recursive-include docs *

global-exclude *.pyc
global-exclude *.swp
global-exclude *.swo
global-exclude *.orig
global-exclude *__pycache__*
recursive-exclude demoproject *
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def parse_dependency_links(file_name):
include_package_data=True,
zip_safe=False,
package_dir={"admin_tools_stats": "admin_tools_stats"},
packages=find_packages(),
packages=find_packages(exclude=["demoproject", "demoproject.*"]),
package_data={},
install_requires=parse_requirements("requirements.txt"),
dependency_links=parse_dependency_links("requirements.txt"),
Expand Down

0 comments on commit e575443

Please sign in to comment.