Skip to content

Commit 8535172

Browse files
authored
Merge pull request #24 from iamansoni/patch-2
Updated setup.py
2 parents 4a06597 + c74fb32 commit 8535172

File tree

1 file changed

+6
-11
lines changed

1 file changed

+6
-11
lines changed

Diff for: setup.py

+6-11
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,13 @@
2121
with open(path.join(this_dir, "README.md"), encoding="utf-8") as file:
2222
long_description = file.read()
2323

24+
# Read the contents of the requirements.txt file
25+
with open("requirements.txt") as f:
26+
required = f.read().splitlines()
27+
2428
setup(
2529
name="mkdocs-techdocs-core",
26-
version="0.0.15",
30+
version="0.0.16",
2731
description="The core MkDocs plugin used by Backstage's TechDocs as a wrapper around "
2832
"multiple MkDocs plugins and Python Markdown extensions",
2933
long_description=long_description,
@@ -34,16 +38,7 @@
3438
author_email="[email protected]",
3539
license="Apache-2.0",
3640
python_requires=">=3.7",
37-
install_requires=[
38-
"mkdocs>=1.1.2",
39-
"mkdocs-material==5.3.2",
40-
"mkdocs-monorepo-plugin~=0.4.13",
41-
"plantuml-markdown==3.4.2",
42-
"markdown_inline_graphviz_extension==1.1",
43-
"pygments==2.7.4",
44-
"pymdown-extensions==7.1",
45-
"Markdown==3.2.2",
46-
],
41+
install_requires=required,
4742
classifiers=[
4843
"Development Status :: 3 - Alpha",
4944
"Intended Audience :: Developers",

0 commit comments

Comments
 (0)