mborgerson / pyxbe

Python 3 library to read and write XBE files, the executable file format for the original Xbox game console
http://pyxbe.readthedocs.io/
MIT License
17 stars 10 forks source link

Tests must not be installed #31

Closed moubctez closed 1 year ago

moubctez commented 1 year ago

Currently, tests are installed into site-packages, which is wrong. This patch fixes the problem:

--- setup.cfg.orig  2023-07-08 06:52:27.000000000 +0000
+++ setup.cfg
@@ -15,7 +15,7 @@ classifiers = 
    Programming Language :: Python :: 3 :: Only

 [options]
-packages = find:
+packages = xbe
 python_requires = >=3.8
 include_package_data = True
mborgerson commented 1 year ago

Oops! Can you send the patch as a pr

mborgerson commented 1 year ago

Fixed. Thanks for the bug report