mirror of
https://github.com/mkdocs/mkdocs.git
synced 2026-03-27 01:48:30 +07:00
14 lines
273 B
Python
14 lines
273 B
Python
"""Installation using setup.py is no longer supported.
|
|
Use `python -m pip install .` instead."""
|
|
|
|
import sys
|
|
|
|
from setuptools import setup
|
|
|
|
sys.exit(__doc__)
|
|
|
|
# Fake reference so GitHub still considers it a real package for statistics purposes.
|
|
setup(
|
|
name="mkdocs",
|
|
)
|