mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-06-14 11:52:32 +03:00
16bb4379d1
* Revert "Revert "Switched to new build and publish workflow (#4337)" (#4340)"
This reverts commit 1a9bc1dd6a
.
* Create setup.py
* update
33 lines
746 B
Python
33 lines
746 B
Python
import sys
|
|
|
|
from setuptools import setup
|
|
|
|
sys.stderr.write(
|
|
"""
|
|
===============================
|
|
Unsupported installation method
|
|
===============================
|
|
This version of mkdocs-material no longer supports
|
|
installation with `python setup.py install`.
|
|
|
|
Please use `python -m pip install .` instead.
|
|
"""
|
|
)
|
|
sys.exit(1)
|
|
|
|
|
|
# The below code will never execute, however GitHub is particularly
|
|
# picky about where it finds Python packaging metadata.
|
|
# See: https://github.com/github/feedback/discussions/6456
|
|
|
|
with open("requirements.txt") as f:
|
|
install_requires = [
|
|
line for line in f.read().split("\n")
|
|
if line and not line.startswith("#")
|
|
]
|
|
|
|
setup(
|
|
name="mkdocs-material",
|
|
install_requires=install_requires,
|
|
)
|