-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
executable file
·190 lines (165 loc) · 7.59 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
#! /usr/bin/env python
# -*- coding: utf-8 -*-
# pylint: disable=attribute-defined-outside-init, invalid-name
# pylint: disable=wrong-import-position
""" rituals – Common tasks for 'Invoke' that are needed again and again.
This setuptools script follows the DRY principle and tries to
minimize repetition of project metadata by loading it from other
places (like the package's `__init__.py`). Incidently, this makes
the script almost identical between different projects.
It is also importable (by using the usual `if __name__ == '__main__'`
idiom), and exposes the project's setup data in a `project` dict.
This allows other tools to exploit the data assembling code contained
in here, and again supports the DRY principle. The `rituals` package
uses that to provide Invoke tasks that work for any project, based on
its project metadata.
Copyright ⓒ 2015 - 2019 Jürgen Hermann
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License version 2 as
published by the Free Software Foundation.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
The full LICENSE file and source are available at
https://github.com/jhermann/rituals
"""
from __future__ import absolute_import, print_function
# Project data (the rest is parsed from __init__.py and other project files)
name = 'rituals'
package_name = 'rituals'
# ~~~ BEGIN springerle/py-generic-project ~~~
# Stdlib imports
import os
import re
import sys
import textwrap
from codecs import open # pylint: disable=redefined-builtin
from collections import defaultdict
# Import setuptools
try:
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
except ImportError as exc:
raise RuntimeError("Cannot install '{0}', setuptools is missing ({1})".format(name, exc))
# Helpers
project_root = os.path.abspath(os.path.dirname(__file__))
def srcfile(*args):
"Helper for path building."
return os.path.join(*((project_root,) + args))
class PyTest(TestCommand):
"""pytest integration into setuptool's `test` command."""
user_options = [('pytest-args=', 'a', "Arguments to pass to py.test")]
def initialize_options(self):
TestCommand.initialize_options(self)
self.pytest_args = []
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(self):
# import locally, cause outside the eggs aren't loaded
import pytest
errno = pytest.main(self.pytest_args)
if errno:
sys.exit(errno)
def _build_metadata(): # pylint: disable=too-many-locals, too-many-branches
"Return project's metadata as a dict."
# Handle metadata in package source
expected_keys = ('url', 'version', 'license', 'author', 'author_email', 'long_description', 'keywords')
metadata = {}
with open(srcfile('src', package_name, '__init__.py'), encoding='utf-8') as handle:
pkg_init = handle.read()
# Get default long description from docstring
metadata['long_description'] = re.search(r'^"""(.+?)^"""$', pkg_init, re.DOTALL|re.MULTILINE).group(1)
for line in pkg_init.splitlines():
match = re.match(r"""^__({0})__ += (?P<q>['"])(.+?)(?P=q)$""".format('|'.join(expected_keys)), line)
if match:
metadata[match.group(1)] = match.group(3)
if not all(i in metadata for i in expected_keys):
raise RuntimeError("Missing or bad metadata in '{0}' package: {1}".format(
name, ', '.join(sorted(set(expected_keys) - set(metadata.keys()))),
))
text = metadata['long_description'].strip()
if text:
metadata['description'], text = text.split('.', 1)
metadata['description'] = ' '.join(metadata['description'].split()).strip() + '.' # normalize whitespace
metadata['long_description'] = textwrap.dedent(text).strip()
metadata['keywords'] = metadata['keywords'].replace(',', ' ').strip().split()
# Load requirements files
requirements_files = dict(
install = 'requirements.txt',
setup = 'setup-requirements.txt',
test = 'test-requirements.txt',
)
requires = {}
for key, filename in requirements_files.items():
requires[key] = []
if os.path.exists(srcfile(filename)):
with open(srcfile(filename), encoding='utf-8') as handle:
for line in handle:
line = line.strip()
if line and not line.startswith('#'):
if line.startswith('-e'):
line = line.split()[1].split('#egg=')[1]
requires[key].append(line)
if not any('pytest' == re.split('[\t ,<=>]', i.lower())[0] for i in requires['test']):
requires['test'].append('pytest') # add missing requirement
# CLI entry points
console_scripts = []
for path, dirs, files in os.walk(srcfile('src', package_name)):
dirs = [i for i in dirs if not i.startswith('.')]
if '__main__.py' in files:
path = path[len(srcfile('src') + os.sep):]
appname = path.split(os.sep)[-1]
with open(srcfile('src', path, '__main__.py'), encoding='utf-8') as handle:
for line in handle.readlines():
match = re.match(r"""^__app_name__ += (?P<q>['"])(.+?)(?P=q)$""", line)
if match:
appname = match.group(2)
console_scripts.append('{0} = {1}.__main__:cli'.format(appname, path.replace(os.sep, '.')))
# Add some common files to EGG-INFO
candidate_files = [
'LICENSE', 'NOTICE',
'README', 'README.md', 'README.rst', 'README.txt',
'CHANGES', 'CHANGELOG', 'debian/changelog',
]
data_files = defaultdict(list)
for filename in candidate_files:
if os.path.exists(srcfile(filename)):
data_files['EGG-INFO'].append(filename)
# Complete project metadata
classifiers = []
for classifiers_txt in ('classifiers.txt', 'project.d/classifiers.txt'):
classifiers_txt = srcfile(classifiers_txt)
if os.path.exists(classifiers_txt):
with open(classifiers_txt, encoding='utf-8') as handle:
classifiers = [i.strip() for i in handle if i.strip() and not i.startswith('#')]
break
metadata.update(dict(
name = name,
package_dir = {'': 'src'},
packages = find_packages(srcfile('src'), exclude=['tests']),
data_files = data_files.items(),
zip_safe = False,
include_package_data = True,
install_requires = requires['install'],
setup_requires = requires['setup'],
tests_require = requires['test'],
classifiers = classifiers,
cmdclass = dict(
test = PyTest,
),
entry_points = dict(
console_scripts = console_scripts,
),
))
return metadata
# Ensure "setup.py" is importable by other tools, to access the project's metadata
project = _build_metadata()
__all__ = ['project', 'project_root', 'package_name', 'srcfile']
if __name__ == '__main__':
setup(**project)