mirror of
https://github.com/certbot/certbot.git
synced 2026-06-03 13:59:02 -04:00
13 lines
283 B
Python
13 lines
283 B
Python
|
|
from setuptools import setup
|
||
|
|
|
||
|
|
|
||
|
|
setup(
|
||
|
|
name='letsencrypt',
|
||
|
|
version='99.9.9',
|
||
|
|
description='A mock version of letsencrypt that just prints its version',
|
||
|
|
py_modules=['letsencrypt'],
|
||
|
|
entry_points={
|
||
|
|
'console_scripts': ['letsencrypt = letsencrypt:main']
|
||
|
|
}
|
||
|
|
)
|