0
0
mirror of https://github.com/bec-project/bec_widgets.git synced 2025-07-14 11:41:49 +02:00

build: setting up repo

This commit is contained in:
2023-07-11 15:20:43 +02:00
parent eda4c55b05
commit 88f5aca2dd
4 changed files with 212 additions and 0 deletions

12
setup.py Normal file
View File

@ -0,0 +1,12 @@
from setuptools import setup
__version__ = "0.0.0"
if __name__ == "__main__":
setup(
install_requires=[
"pyqt5",
],
extras_require={"dev": ["pytest", "pytest-random-order", "coverage", "pytest-qt"]},
version=__version__,
)