1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#!/usr/bin/python3
# SPDX-License-Identifier: MIT
from setuptools import setup
setup(name="mdbp",
description="dpkg-buildpackage wrapper",
packages=["mdbp"],
package_data={"mdbp": ["build_schema.json"]},
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Topic :: Software Development :: Build Tools",
],
install_requires=[
"python_debian",
"jsonschema",
"requests",
],
entry_points=dict(
console_scripts=[
"mdbp-mmdebstrap=mdbp.mmdebstrap:main",
"mdbp-pbuilder=mdbp.pbuilder:main",
"mdbp-sbuild=mdbp.sbuild:main",
"mdbp-ssh=mdbp.ssh:main",
"mdbp-streamapi=mdbp.streamapi:main",
]
)
)
|