forked from mcmtroffaes/sphinxcontrib-bibtex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
80 lines (72 loc) · 2.8 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
import io
import re
from setuptools import setup, find_namespace_packages
from typing import Optional
def readfile(filename: str) -> str:
with io.open(filename, encoding="utf-8") as stream:
return stream.read()
readme = readfile("README.rst").split("\n")[5:] # skip title and badges
requires = readfile("requirements.txt").split("\n")
version_match = re.search("'version': '(.+)'",
readfile("src/sphinxcontrib/bibtex/__init__.py"))
assert version_match is not None, "version not found"
version = version_match.group(1)
# make entry point specifications
def plugin(plugin_name: str, mod_name: Optional[str] = None) -> str:
if mod_name is None:
mod_name = plugin_name
path = "sphinxcontrib.bibtex.style.referencing"
class_name = ''.join(part.capitalize() for part in plugin_name.split("_"))
return f"{plugin_name} = {path}.{mod_name}:{class_name}ReferenceStyle"
setup(
name='sphinxcontrib-bibtex',
version=version,
url='https://github.com/mcmtroffaes/sphinxcontrib-bibtex',
download_url='https://pypi.python.org/pypi/sphinxcontrib-bibtex',
license='BSD',
author='Matthias C. M. Troffaes',
author_email='matthias.troffaes@gmail.com',
description=readme[0],
long_description="\n".join(readme[2:]),
zip_safe=False,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'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',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Documentation',
'Topic :: Utilities',
],
platforms='any',
packages=find_namespace_packages('src'),
package_dir={'': 'src'},
package_data={'sphinxcontrib.bibtex': ['py.typed']},
include_package_data=True,
python_requires='>=3.6',
install_requires=requires,
tests_require=['pytest', 'pytest-cov'],
namespace_packages=['sphinxcontrib'],
entry_points={
'pybtex.style.names': [
'last = sphinxcontrib.bibtex.style.names.last:LastNameStyle',
],
'sphinxcontrib.bibtex.style.referencing': [
plugin('author_year'),
plugin('label'),
plugin('super', 'super_'),
plugin('foot'),
],
}
)