Exclude built documentation from sdist

This commit is contained in:
Mark Qvist 2025-04-08 14:36:59 +02:00
parent f4c1ece10a
commit f8925eaed1
2 changed files with 11 additions and 5 deletions

View file

@ -21,7 +21,7 @@ else:
pkg_name = "rns"
requirements = ['cryptography>=3.4.7', 'pyserial>=3.5']
excluded_modules = exclude=["tests.*", "tests"]
excluded_modules = ["tests.*", "tests"]
packages = setuptools.find_packages(exclude=excluded_modules)
setuptools.setup(