mirror of
https://github.com/mupen64plus/mupen64plus-ui-python.git
synced 2025-04-02 10:51:53 -04:00
Exclude package data
This commit is contained in:
parent
2264a06ec2
commit
e0e9a1967f
3 changed files with 2 additions and 4 deletions
|
@ -59,12 +59,8 @@ To install just the Python dependencies:
|
|||
Install
|
||||
=======
|
||||
|
||||
First, run ``python setup.py build`` followed by ``python -m pip install .``
|
||||
to install
|
||||
|
||||
.. code::
|
||||
|
||||
python setup.py build
|
||||
python -m pip install . --user
|
||||
|
||||
.. note::
|
||||
|
|
|
@ -32,6 +32,7 @@ Changelog = "https://raw.githubusercontent.com/mupen64plus/mupen64plus-ui-python
|
|||
[tool.setuptools]
|
||||
script-files = ["bin/m64py"]
|
||||
package-dir = {"" = "src"}
|
||||
exclude-package-data = { "*" = ["*.jpg", "*.png", "*.svg", "*.ts"]}
|
||||
|
||||
[tool.setuptools.packages.find]
|
||||
where = ["src"]
|
||||
|
|
1
setup.py
1
setup.py
|
@ -371,6 +371,7 @@ setuptools.setup(
|
|||
url = "https://m64py.sourceforge.net",
|
||||
package_dir = {"": "src"},
|
||||
packages = setuptools.find_namespace_packages(where="src"),
|
||||
exclude_package_data = {"*": ["*.jpg", "*.png", "*.svg", "*.ts"]},
|
||||
scripts = ["bin/m64py"],
|
||||
requires = ["PyQt6", "PySDL2"],
|
||||
cmdclass = {
|
||||
|
|
Loading…
Add table
Reference in a new issue