forked from bdrung/bdebstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·105 lines (84 loc) · 3.86 KB
/
setup.py
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
#!/usr/bin/python3
# Copyright (C) 2019-2022, Benjamin Drung <[email protected]>
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
"""Setup for bdebstrap"""
import os
import subprocess
from setuptools import Command, setup
# Setuptools replaces the `distutils` module in `sys.modules`.
# pylint: disable=wrong-import-order
import distutils.log # isort:skip, pylint: disable=deprecated-module
import distutils.command.build # isort:skip, pylint: disable=deprecated-module
import distutils.command.clean # isort:skip, pylint: disable=deprecated-module
HOOKS = ["hooks/disable-units", "hooks/enable-units"]
MAN_PAGES = ["bdebstrap.1"]
class DocCommand(Command):
"""A custom command to build the documentation using pandoc."""
description = "run pandoc to generate man pages"
user_options = []
def initialize_options(self):
"""Set default values for options."""
def finalize_options(self):
"""Post-process options."""
def run(self):
"""Run pandoc."""
for man_page in MAN_PAGES:
command = ["pandoc", "-s", "-t", "man", man_page + ".md", "-o", man_page]
self.announce(f"running command: {' '.join(command)}", level=distutils.log.INFO)
subprocess.check_call(command)
class BuildCommand(distutils.command.build.build):
"""Custom build command (calling doc beforehand)."""
def run(self):
self.run_command("doc")
distutils.command.build.build.run(self)
class CleanCommand(distutils.command.clean.clean):
"""Custom clean command (removing generated man pages)."""
def run(self):
for man_page in MAN_PAGES:
if os.path.exists(man_page):
self.announce(f"removing {man_page}", level=distutils.log.INFO)
os.remove(man_page)
distutils.command.clean.clean.run(self)
if __name__ == "__main__":
with open("README.md", "r", encoding="utf-8") as fh:
LONG_DESCRIPTION = fh.read()
setup(
name="bdebstrap",
version="0.5.0",
description="Benjamin's multi-mirror Debian chroot creation tool",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
author="Benjamin Drung",
author_email="[email protected]",
url="https://github.com/bdrung/bdebstrap",
project_urls={"Bug Tracker": "https://github.com/bdrung/bdebstrap/issues"},
license="ISC",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"License :: OSI Approved :: ISC License (ISCL)",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
cmdclass={"doc": DocCommand, "build": BuildCommand, "clean": CleanCommand},
install_requires=["ruamel.yaml"],
scripts=["bdebstrap"],
py_modules=[],
data_files=[("/usr/share/man/man1", MAN_PAGES), ("/usr/share/bdebstrap/hooks", HOOKS)],
)