This commit is contained in:
Mario Fetka
2024-03-12 20:41:02 +01:00
parent 6efca6afa2
commit a14b80a8cf
74 changed files with 887 additions and 778 deletions

View File

@@ -0,0 +1,11 @@
from setuptools import setup, find_packages
setup(
name='deb_changectl',
version='1.0.24',
url='https://github.com/seanodea/deb-changectl',
description='Description of my package',
packages=find_packages(include=['deb_changectl', 'deb_changectl.*']),
scripts=['deb_changectl/deb-changectl'],
# install_requires=['numpy >= 1.11.1', 'matplotlib >= 1.5.1'],
)