mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-11-06 11:18:54 -05:00
9 lines
177 B
Python
9 lines
177 B
Python
from setuptools import setup
|
|
import os
|
|
|
|
if os.getenv("READTHEDOCS", False):
|
|
setup(python_requires=">=3.7")
|
|
else:
|
|
# Metadata and options defined in setup.cfg
|
|
setup()
|