Add the usual project files in order to build a tarball more easily

This commit is contained in:
Oliver Falk
2023-01-03 15:37:51 +01:00
parent ff9af3de9b
commit 47837f4516
4 changed files with 52 additions and 0 deletions

6
setup.py Normal file
View File

@@ -0,0 +1,6 @@
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
packages=find_packages(),
)