-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·204 lines (176 loc) · 6.44 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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
#!/usr/bin/env python
"""
Python setup script for the syslog2 project.
"""
import sys
import os
import io
import re
import setuptools
def get_version(version_file):
"""
Execute the specified version file and return the value of the __version__
global variable that is set in the version file.
Note: Make sure the version file does not depend on any packages in the
requirements list of this package (otherwise it cannot be executed in
a fresh Python environment).
"""
with io.open(version_file, 'r', encoding='utf-8') as fp:
version_source = fp.read()
_globals = {}
exec(version_source, _globals) # pylint: disable=exec-used
return _globals['__version__']
def get_requirements(requirements_file):
"""
Parse the specified requirements file and return a list of its non-empty,
non-comment lines. The returned lines are without any trailing newline
characters.
"""
with io.open(requirements_file, 'r', encoding='utf-8') as fp:
lines = fp.readlines()
reqs = []
for line in lines:
line = line.strip('\n')
if not line.startswith('#') and line != '':
reqs.append(line)
return reqs
def read_file(a_file):
"""
Read the specified file and return its content as one string.
"""
with io.open(a_file, 'r', encoding='utf-8') as fp:
content = fp.read()
return content
class PytestCommand(setuptools.Command):
"""
Base class for setup.py commands for executing tests for this package
using pytest.
Note on the class name: Because distutils.dist._show_help() shows the class
name for the setup.py command name instead of invoking get_command_name(),
the classes that get registered as commands must have the command name.
"""
description = None # Set by subclass
my_test_dirs = None # Set by subclass
user_options = [
(
'pytest-options=', # '=' indicates it requires an argument
None, # no short option
"additional options for pytest, as one argument"
),
]
def initialize_options(self):
"""
Standard method called by setup to initialize options for the command.
"""
# pylint: disable=attribute-defined-outside-init
self.test_opts = None
self.test_dirs = None
self.pytest_options = None
# pylint: enable=attribute-defined-outside-init
def finalize_options(self):
"""
Standard method called by setup to finalize options for the command.
"""
# pylint: disable=attribute-defined-outside-init
self.test_opts = [
'--color=yes',
'-s',
'-W', 'default',
'-W', 'ignore::PendingDeprecationWarning',
]
if sys.version_info[0] == 3:
self.test_opts.extend([
'-W', 'ignore::ResourceWarning',
])
self.test_dirs = self.my_test_dirs
# pylint: enable=attribute-defined-outside-init
def run(self):
"""
Standard method called by setup to execute the command.
"""
# deferred import so install does not depend on it
import pytest # pylint: disable=import-outside-toplevel
args = self.test_opts
if self.pytest_options:
args.extend(self.pytest_options.split(' '))
args.extend(self.test_dirs)
if self.dry_run:
self.announce("Dry-run: pytest {}".format(' '.join(args)), level=1)
return 0
self.announce("pytest {}".format(' '.join(args)), level=1)
rc = pytest.main(args)
return rc
class test(PytestCommand):
# pylint: disable=invalid-name
"""
Setup.py command for executing unit and function tests.
"""
description = "syslog2: Run unit tests using pytest"
my_test_dirs = ['tests/unittest']
# pylint: disable=invalid-name
requirements = get_requirements('requirements.txt')
install_requires = [req for req in requirements
if req and not re.match(r'[^:]+://', req)]
dependency_links = [req for req in requirements
if req and re.match(r'[^:]+://', req)]
test_requirements = get_requirements('test-requirements.txt')
package_version = get_version(os.path.join('syslog2', '_version.py'))
# Docs on setup():
# * https://docs.python.org/2.7/distutils/apiref.html?
# highlight=setup#distutils.core.setup
# * https://setuptools.readthedocs.io/en/latest/setuptools.html#
# new-and-changed-setup-keywords
setuptools.setup(
name='syslog2',
version=package_version,
packages=[
'syslog2',
],
include_package_data=True, # Includes MANIFEST.in files into sdist (only)
scripts=[
# add any scripts
],
install_requires=install_requires,
dependency_links=dependency_links,
extras_require={
"test": test_requirements,
},
cmdclass={
'test': test,
},
description="An improved SysLogHandler for Python",
long_description=read_file('README.rst'),
long_description_content_type='text/x-rst',
license="Apache Software License 2.0",
author="Andreas Maier",
author_email='andreas.r.maier@gmx.de',
maintainer="Andreas Maier",
maintainer_email='andreas.r.maier@gmx.de',
url='https://github.com/andy-maier/syslog2',
project_urls={
'Bug Tracker': 'https://github.com/andy-maier/syslog2/issues',
'Documentation': 'https://syslog2.readthedocs.io/en/latest/',
'Source Code': 'https://github.com/andy-maier/syslog2',
},
options={'bdist_wheel': {'universal': True}},
zip_safe=True, # This package can safely be installed from a zip file
platforms='any',
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'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',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)