Files
tomcat_bec/setup.py
2024-03-19 10:20:50 +01:00

10 lines
309 B
Python

from setuptools import setup
if __name__ == "__main__":
setup(
# specify the additional dependencies
install_requires=[],
# if you have additional dependencies for development, specify them here
extras_require={"dev": ["pytest", "pytest-random-order", "coverage"]},
)