-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
206 lines (169 loc) · 6.65 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
205
206
import json
import os
import re
import subprocess
from setuptools import setup, find_packages, Command
from bfg9000.app_version import version
root_dir = os.path.abspath(os.path.dirname(__file__))
class Coverage(Command):
description = 'run tests with code coverage'
user_options = [
('test-suite=', 's',
"test suite to run (e.g. 'some_module.test_suite')"),
]
def initialize_options(self):
self.test_suite = None
def finalize_options(self):
pass
def run(self):
env = dict(os.environ)
pythonpath = os.path.join(root_dir, 'test', 'scripts')
if env.get('PYTHONPATH'):
pythonpath += os.pathsep + env['PYTHONPATH']
env.update({
'PYTHONPATH': pythonpath,
'COVERAGE_FILE': os.path.join(root_dir, '.coverage'),
'COVERAGE_PROCESS_START': os.path.join(root_dir, 'setup.cfg'),
})
subprocess.run(['coverage', 'erase'], check=True)
subprocess.run(
['coverage', 'run', 'setup.py', 'test'] +
(['-q'] if self.verbose == 0 else []) +
(['-s', self.test_suite] if self.test_suite else []),
env=env, check=True
)
subprocess.run(['coverage', 'combine'], check=True,
stdout=subprocess.DEVNULL)
custom_cmds = {
'coverage': Coverage,
}
try:
from verspec.python import Version
class DocServe(Command):
description = 'serve the documentation locally'
user_options = [
('working', 'w', 'use the documentation in the working directory'),
('dev-addr=', None, 'address to host the documentation on'),
]
def initialize_options(self):
self.working = False
self.dev_addr = '0.0.0.0:8000'
def finalize_options(self):
pass
def run(self):
cmd = 'mkdocs' if self.working else 'mike'
subprocess.run([
cmd, 'serve', '--dev-addr=' + self.dev_addr
], check=True)
class DocDeploy(Command):
description = 'push the documentation to GitHub'
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
v = Version(version)
alias = 'dev' if v.is_devrelease else 'latest'
title = '{} ({})'.format(v.base_version, alias)
short_version = '{}.{}'.format(*v.release[:2])
try:
info = json.loads(subprocess.run(
['mike', 'list', '-j', alias], universal_newlines=True,
check=True, stdout=subprocess.PIPE
).stdout)
except subprocess.CalledProcessError:
info = None
if info and info['version'] != short_version:
t = re.sub(r' \({}\)$'.format(re.escape(alias)), '',
info['title'])
subprocess.run(['mike', 'retitle', info['version'], t],
check=True)
subprocess.run(['mike', 'deploy', '-ut', title, short_version,
alias], check=True)
custom_cmds['doc_serve'] = DocServe
custom_cmds['doc_deploy'] = DocDeploy
except ImportError:
pass
more_requires = []
if os.getenv('STDEB_BUILD') not in ['1', 'true']:
more_requires.extend([
'doppel >= 0.4.0',
'mopack >= 0.1.0',
'pysetenv;platform_system=="Windows"'
])
with open(os.path.join(root_dir, 'README.md'), 'r') as f:
# Read from the file and strip out the badges.
long_desc = re.sub(r'(^# bfg9000.*)\n\n(.+\n)*', r'\1', f.read())
setup(
name='bfg9000',
version=version,
description='A cross-platform build file generator',
long_description=long_desc,
long_description_content_type='text/markdown',
keywords='build file generator',
url='https://jimporter.github.io/bfg9000/',
author='Jim Porter',
author_email='itsjimporter@gmail.com',
license='BSD-3-Clause',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'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',
],
packages=find_packages(exclude=['test', 'test.*']),
python_requires='>=3.6',
install_requires=(
['colorama', 'importlib_metadata', 'pyyaml', 'verspec'] + more_requires
),
extras_require={
'dev': ['coverage', 'flake8 >= 3.7', 'flake8-quotes', 'lxml',
'mike >= 2.0.0', 'mkdocs-bootswatch-classic >= 1.0',
'mkdocs-macros-plugin', 'shtab', 'stdeb'],
'test': ['coverage', 'flake8 >= 3.7', 'flake8-quotes', 'lxml',
'shtab'],
'msbuild': ['lxml'],
},
entry_points={
'console_scripts': [
'bfg9000=bfg9000.driver:main',
'9k=bfg9000.driver:simple_main',
'bfg9000-depfixer=bfg9000.depfixer:main',
'bfg9000-jvmoutput=bfg9000.jvmoutput:main',
'bfg9000-rccdep=bfg9000.rccdep:main',
],
'bfg9000.backends': [
'make=bfg9000.backends.make.writer',
'ninja=bfg9000.backends.ninja.writer',
'msbuild=bfg9000.backends.msbuild.writer [msbuild]',
],
'bfg9000.platforms.host': [
'cygwin=bfg9000.platforms.cygwin:CygwinHostPlatform',
'darwin=bfg9000.platforms.posix:DarwinHostPlatform',
'linux=bfg9000.platforms.posix:PosixHostPlatform',
'msdos=bfg9000.platforms.windows:WindowsTargetPlatform',
'posix=bfg9000.platforms.posix:PosixHostPlatform',
'win9x=bfg9000.platforms.windows:WindowsHostPlatform',
'winnt=bfg9000.platforms.windows:WindowsHostPlatform',
],
'bfg9000.platforms.target': [
'cygwin=bfg9000.platforms.cygwin:CygwinTargetPlatform',
'darwin=bfg9000.platforms.posix:DarwinTargetPlatform',
'linux=bfg9000.platforms.posix:PosixTargetPlatform',
'msdos=bfg9000.platforms.windows:WindowsTargetPlatform',
'posix=bfg9000.platforms.posix:PosixTargetPlatform',
'win9x=bfg9000.platforms.windows:WindowsTargetPlatform',
'winnt=bfg9000.platforms.windows:WindowsTargetPlatform',
],
},
test_suite='test',
cmdclass=custom_cmds,
)