python-click/setup.py

10 lines
191 B
Python
Raw Normal View History

2014-10-16 20:40:34 +02:00
from setuptools import setup
setup(
2020-07-21 08:23:42 +02:00
name="click",
2021-10-10 03:31:57 +02:00
install_requires=[
"colorama; platform_system == 'Windows'",
"importlib-metadata; python_version < '3.8'",
2014-10-16 20:40:34 +02:00
],
)