/
ne1ghost
/
MyST-Parser
Обзор
Документация
Войти
/
ne1ghost
/
MyST-Parser
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
.github/workflows/docutils_setup.py
57 строк
2 KB
Chris Sewell
🔧 pre-commit autoupdate (#894)
26 мар 2024, 06:51
Не верифицирован
26 мар 2024, 06:51
abcc087
Код
Авторство
О чём код?
#!/usr/bin/env python3 """Script to convert package setup to myst-docutils.""" import sys import tomlkit def modify_toml(content: str) -> str: """Modify `pyproject.toml`.""" doc = tomlkit.parse(content) # change name of package doc["project"]["name"] = "myst-docutils" # move dependency on docutils and sphinx to extra dependencies = [] sphinx_extra = [] for dep in doc["project"]["dependencies"]: if dep.startswith(("docutils", "sphinx")): sphinx_extra.append(dep) else: dependencies.append(dep) doc["project"]["dependencies"] = dependencies doc["project"]["optional-dependencies"]["sphinx"] = sphinx_extra return tomlkit.dumps(doc) def modify_readme(content: str) -> str: """Modify README.md.""" content = content.replace("myst-parser", "myst-docutils") content = content.replace( "# MyST-Parser", "# MyST-Parser\n\nNote: myst-docutils is identical to myst-parser, " "but without installation requirements on sphinx", ) content = content.replace("myst-docutils.readthedocs", "myst-parser.readthedocs") content = content.replace( "readthedocs.org/projects/myst-docutils", "readthedocs.org/projects/myst-parser" ) return content if __name__ == "__main__": project_path = sys.argv[1] readme_path = sys.argv[2] with open(project_path) as f: content = f.read() content = modify_toml(content) with open(project_path, "w") as f: f.write(content) with open(readme_path) as f: content = f.read() content = modify_readme(content) with open(readme_path, "w") as f: f.write(content)