forked from mgaitan/sphinxcontrib-mermaid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
63 lines (56 loc) · 2.23 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
from setuptools import find_packages, setup
readme = open("README.rst", encoding="utf-8").read()
changes = open("CHANGELOG.rst", encoding="utf-8").read()
version = "0.9.2"
def long_description():
"""
return readme + changes, removing directive blocks that are only valid in the context
of sphinx doc"""
def remove_block(text, token, margin=0):
input_lines = text.splitlines()
for i, l in enumerate(input_lines):
if l.startswith(token):
break
start = i
end = input_lines.index("", start + margin)
return "\n".join(input_lines[:start] + input_lines[end:])
readme_ = remove_block(readme, ".. mermaid::", margin=2)
readme_ = remove_block(readme_, ".. autoclasstree::")
readme_ = remove_block(readme_, ".. autoclasstree::")
readme_ = remove_block(readme_, ".. versionchanged::")
return f"{readme_}\n\n{changes}"
setup(
name="sphinxcontrib-mermaid",
version=version,
url="https://github.com/mgaitan/sphinxcontrib-mermaid",
download_url="https://pypi.python.org/pypi/sphinxcontrib-mermaid",
license="BSD",
author="Martín Gaitán",
author_email="[email protected]",
description="Mermaid diagrams in yours Sphinx powered docs",
long_description=long_description(),
python_requires=">=3.7",
classifiers=[
"Development Status :: 4 - Beta",
"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.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_packages(),
include_package_data=True,
namespace_packages=["sphinxcontrib"],
)