Trying to make installable package

This commit is contained in:
2023-05-19 18:51:01 +02:00
commit efc2d1c8f5
8 changed files with 172 additions and 0 deletions

7
setup.py Normal file
View File

@@ -0,0 +1,7 @@
from setuptools import find_packages, setup
setup(
name="EngieApi",
version="0.1",
packages=find_packages(),
)