first version

This commit is contained in:
Q
2022-01-07 18:55:57 +02:00
commit 671823cbc6
7 changed files with 271 additions and 0 deletions

13
setup.py Normal file
View File

@@ -0,0 +1,13 @@
from distutils.core import setup
setup(
name="atdel",
packages=["atdel"],
include_package_data=True,
classifiers=[],
entry_points={
"console_scripts": [
"atdel=atdel:main",
],
},
)