-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path__pkginfo__.py
37 lines (32 loc) · 1.12 KB
/
__pkginfo__.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
# This file is managed by 'repo_helper'. Don't edit it directly.
# Copyright © 2020 Dominic Davis-Foster <dominic@davis-foster.co.uk>
#
# This file is distributed under the same license terms as the program it came with.
# There will probably be a file called LICEN[S/C]E in the same directory as this file.
#
# In any case, 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.
#
# This script based on https://github.com/rocky/python-uncompyle6/blob/master/__pkginfo__.py
#
# stdlib
import pathlib
__all__ = [
"__copyright__",
"__version__",
"repo_root",
"install_requires",
"extras_require",
]
__copyright__ = """
2020 Dominic Davis-Foster <dominic@davis-foster.co.uk>
"""
__version__ = "0.4.0"
repo_root = pathlib.Path(__file__).parent
install_requires = (repo_root / "requirements.txt").read_text(encoding="utf-8").split('\n')
extras_require = {
'sphinx': ['sphinx', 'sphinx-toolbox', 'docutils'],
'testing': ['pytest'],
'all': ['docutils', 'pytest', 'sphinx', 'sphinx-toolbox']
}