mirror of
https://github.com/certbot/certbot.git
synced 2026-01-21 19:01:07 +03:00
24 lines
510 B
Python
24 lines
510 B
Python
from setuptools import setup
|
|
from setuptools import find_packages
|
|
|
|
|
|
install_requires = [
|
|
'letsencrypt',
|
|
'letsencrypt-apache',
|
|
'letsencrypt-nginx',
|
|
'docker-py',
|
|
'mock<1.1.0', # py26
|
|
'zope.interface',
|
|
]
|
|
|
|
setup(
|
|
name='letsencrypt-compatibility-test',
|
|
packages=find_packages(),
|
|
install_requires=install_requires,
|
|
entry_points={
|
|
'console_scripts': [
|
|
'letsencrypt-compatibility-test = letsencrypt_compatibility_test.test_driver:main',
|
|
],
|
|
},
|
|
)
|