-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
131 lines (115 loc) · 4.24 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
"""Tools for managing archives
This package provides tools for managing archives. An archive in
terms of this package is a (compressed) tar archive file with some
embedded metadata on the included files. This metadata include the
name, file stats, and checksums of the file.
"""
import setuptools
from setuptools import setup
import setuptools.command.build_py
import distutils.command.sdist
from distutils import log
from glob import glob
from pathlib import Path
import string
try:
import distutils_pytest
cmdclass = distutils_pytest.cmdclass
except (ImportError, AttributeError):
cmdclass = dict()
try:
import gitprops
release = str(gitprops.get_last_release())
version = str(gitprops.get_version())
except (ImportError, LookupError):
try:
from _meta import release, version
except ImportError:
log.warn("warning: cannot determine version number")
release = version = "UNKNOWN"
docstring = __doc__
class meta(setuptools.Command):
description = "generate meta files"
user_options = []
meta_template = '''
release = "%(release)s"
version = "%(version)s"
'''
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
version = self.distribution.get_version()
log.info("version: %s", version)
values = {
'release': release,
'version': version,
}
with Path("_meta.py").open("wt") as f:
print(self.meta_template % values, file=f)
# Note: Do not use setuptools for making the source distribution,
# rather use the good old distutils instead.
# Rationale: https://rhodesmill.org/brandon/2009/eby-magic/
class sdist(distutils.command.sdist.sdist):
def run(self):
self.run_command('meta')
super().run()
subst = {
"version": self.distribution.get_version(),
"url": self.distribution.get_url(),
"description": docstring.split("\n")[0],
"long_description": docstring.split("\n", maxsplit=2)[2].strip(),
}
for spec in glob("*.spec"):
with Path(spec).open('rt') as inf:
with Path(self.dist_dir, spec).open('wt') as outf:
outf.write(string.Template(inf.read()).substitute(subst))
class build_py(setuptools.command.build_py.build_py):
def run(self):
self.run_command('meta')
super().run()
package = self.distribution.packages[0].split('.')
outfile = self.get_module_outfile(self.build_lib, package, "_meta")
self.copy_file("_meta.py", outfile, preserve_mode=0)
with Path("README.rst").open("rt", encoding="utf8") as f:
readme = f.read()
setup(
name = "archive-tools",
version = version,
description = docstring.split("\n")[0],
long_description = readme,
long_description_content_type = "text/x-rst",
url = "https://github.com/RKrahl/archive-tools",
author = "Rolf Krahl",
license = "Apache-2.0",
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: System :: Archiving",
],
project_urls = dict(
Source="https://github.com/RKrahl/archive-tools",
Download=("https://github.com/RKrahl/archive-tools/releases/%s/"
% release),
),
packages = ["archive", "archive.cli", "archive.bt"],
package_dir = {"": "src"},
python_requires = ">=3.6",
install_requires = ["setuptools", "PyYAML >=5.1", "packaging", "lark"],
scripts = ["scripts/archive-tool.py", "scripts/backup-tool.py",
"scripts/imap-to-archive.py"],
data_files = [("/etc", ["etc/backup.cfg"])],
cmdclass = dict(cmdclass, build_py=build_py, sdist=sdist, meta=meta),
)