This commit is contained in:
dolphinau 2025-11-23 21:35:33 +01:00
parent 42274e7d2c
commit c529e3f6e9
No known key found for this signature in database
6 changed files with 143 additions and 22 deletions

8
setup.py Normal file
View file

@ -0,0 +1,8 @@
from setuptools import find_packages, setup
setup(
name="secret-santa",
version="1.0.0",
package_dir={"": "src"},
packages=find_packages(where="src"),
)