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',
|
2015-08-27 16:38:32 -04:00
|
|
|
'mock<1.1.0', # py26
|
2015-07-14 21:04:43 -04:00
|
|
|
'zope.interface',
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
setup(
|
2015-07-23 10:38:05 -04:00
|
|
|
name='letsencrypt-compatibility-test',
|
2015-07-14 21:04:43 -04:00
|
|
|
packages=find_packages(),
|
|
|
|
|
install_requires=install_requires,
|
|
|
|
|
entry_points={
|
|
|
|
|
'console_scripts': [
|
2015-07-23 10:38:05 -04:00
|
|
|
'letsencrypt-compatibility-test = letsencrypt_compatibility_test.test_driver:main',
|
2015-07-14 21:04:43 -04:00
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
)
|