certbot/letsencrypt-compatibility-test/setup.py

24 lines
510 B
Python
Raw Normal View History

2015-07-14 21:04:43 -04:00
from setuptools import setup
from setuptools import find_packages
install_requires = [
'letsencrypt',
'letsencrypt-apache',
'letsencrypt-nginx',
'docker-py',
'mock<1.1.0', # py26
2015-07-14 21:04:43 -04:00
'zope.interface',
]
setup(
name='letsencrypt-compatibility-test',
2015-07-14 21:04:43 -04:00
packages=find_packages(),
install_requires=install_requires,
entry_points={
'console_scripts': [
'letsencrypt-compatibility-test = letsencrypt_compatibility_test.test_driver:main',
2015-07-14 21:04:43 -04:00
],
},
)