added setup.cfg and setup.py file

This commit is contained in:
2022-05-17 14:28:17 +02:00
parent 78996b2ef6
commit 86395ac6e7
2 changed files with 63 additions and 0 deletions

12
setup.py Normal file
View File

@ -0,0 +1,12 @@
#!/usr/bin/env python3
"""
We do the package handling in the static setup.cfg but include an empty setup.py
to allow editable installs https://packaging.python.org/tutorials/packaging-projects/
and provide extensibility
"""
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup()