File tree 1 file changed +6
-11
lines changed
1 file changed +6
-11
lines changed Original file line number Diff line number Diff line change 21
21
with open (path .join (this_dir , "README.md" ), encoding = "utf-8" ) as file :
22
22
long_description = file .read ()
23
23
24
+ # Read the contents of the requirements.txt file
25
+ with open ("requirements.txt" ) as f :
26
+ required = f .read ().splitlines ()
27
+
24
28
setup (
25
29
name = "mkdocs-techdocs-core" ,
26
- version = "0.0.15 " ,
30
+ version = "0.0.16 " ,
27
31
description = "The core MkDocs plugin used by Backstage's TechDocs as a wrapper around "
28
32
"multiple MkDocs plugins and Python Markdown extensions" ,
29
33
long_description = long_description ,
34
38
35
39
license = "Apache-2.0" ,
36
40
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 ,
47
42
classifiers = [
48
43
"Development Status :: 3 - Alpha" ,
49
44
"Intended Audience :: Developers" ,
You can’t perform that action at this time.
0 commit comments