summaryrefslogtreecommitdiff
path: root/setup.py
blob: 265ecf2ffdd471d6ebf3a6c6fbcf0e21cad69aaa (plain)
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
#!/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",
          ]
      )
)