diff options
author | Helmut Grohne <helmut@subdivi.de> | 2021-04-18 14:42:27 +0200 |
---|---|---|
committer | Helmut Grohne <helmut@subdivi.de> | 2021-04-18 14:42:27 +0200 |
commit | cf999acb17c8123ddee407d0e486ca3b275a5d7c (patch) | |
tree | bfe9307dc9d2dd49fd46111bab0e3fbe324d6687 /setup.py | |
download | mdbp-cf999acb17c8123ddee407d0e486ca3b275a5d7c.tar.gz |
initial checkin of mdbp
Proof-of-concept status. Some things work.
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100755 index 0000000..265ecf2 --- /dev/null +++ b/setup.py @@ -0,0 +1,27 @@ +#!/usr/bin/python3 +# SPDX-License-Identifier: MIT + +from setuptools import setup + +setup(name="mdbp", + description="dpkg-buildpackage wrapper", + packages="mdbp", + classifiers=[ + "Intended Audience :: Developers", + "License :: OSI Approved :: MIT License", + "Operating System :: POSIX :: Linux", + "Topic :: Software Development :: Build Tools", + ], + install_requires=[ + "debian", + "jsonschema", + "requests", + ], + entry_points=dict( + console_scripts=[ + "mdbp-mmdebstrap=mdbp.mmdebstrap:main", + "mdbp-pbuilder=mdbp.pbuilder:main", + "mdbp-sbuild=mdbp.sbuild:main", + ] + ) +) |