Skip to content

Commit

Permalink
We don't use setup.py to do tests anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
WyattBlue committed Aug 17, 2024
1 parent 4f14a7c commit 9b25762
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,16 +210,13 @@ def parse_cflags(raw_flags):
author="Mike Boers",
author_email="pyav@mikeboers.com",
url="https://github.com/PyAV-Org/PyAV",
packages=find_packages(
exclude=["build*", "examples*", "scratchpad*", "tests*", "include*"]
)
packages=find_packages(exclude=["build*", "examples*", "tests*", "include*"])
+ list(package_dir.keys()),
package_dir=package_dir,
package_data=package_data,
python_requires=">=3.9",
zip_safe=False,
ext_modules=ext_modules,
test_suite="tests",
entry_points={
"console_scripts": ["pyav = av.__main__:main"],
},
Expand Down

0 comments on commit 9b25762

Please sign in to comment.