mkdocs-material/setup.py
Ofek Lev 16bb4379d1
Modernized metadata (#4341)
* Revert "Revert "Switched to new build and publish workflow (#4337)" (#4340)"

This reverts commit 1a9bc1dd6a.

* Create setup.py

* update
2022-09-18 17:44:18 +02:00

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,
)