mirror of
https://github.com/certbot/certbot.git
synced 2026-01-21 19:01:07 +03:00
24 lines
503 B
Python
24 lines
503 B
Python
import sys
|
|
|
|
from setuptools import setup
|
|
from setuptools import find_packages
|
|
|
|
|
|
install_requires = []
|
|
if sys.version_info < (2, 7):
|
|
install_requires.append("mock<1.1.0")
|
|
else:
|
|
install_requires.append("mock")
|
|
|
|
setup(
|
|
name="letshelp-letsencrypt",
|
|
packages=find_packages(),
|
|
install_requires=install_requires,
|
|
entry_points={
|
|
'console_scripts': [
|
|
"letshelp-letsencrypt-apache = letshelp_letsencrypt.apache:main",
|
|
],
|
|
},
|
|
include_package_data=True,
|
|
)
|