mirror of
https://github.com/certbot/certbot.git
synced 2026-06-03 22:08:07 -04:00
Unify setup.py: description/url/author/author_email.
This commit is contained in:
parent
20131de9fb
commit
b5036e36ad
6 changed files with 28 additions and 2 deletions
|
|
@ -37,7 +37,12 @@ testing_extras = [
|
|||
setup(
|
||||
name='acme',
|
||||
version=version,
|
||||
description='ACME protocol implementation',
|
||||
url='https://github.com/letsencrypt/letsencrypt',
|
||||
author="Let's Encrypt Project",
|
||||
author_email='client-dev@letsencrypt.org',
|
||||
license='Apache License 2.0',
|
||||
|
||||
packages=find_packages(),
|
||||
install_requires=install_requires,
|
||||
extras_require={
|
||||
|
|
|
|||
|
|
@ -17,7 +17,12 @@ install_requires = [
|
|||
setup(
|
||||
name='letsencrypt-apache',
|
||||
version=version,
|
||||
description="Apache plugin for Let's Encrypt client",
|
||||
url='https://github.com/letsencrypt/letsencrypt',
|
||||
author="Let's Encrypt Project",
|
||||
author_email='client-dev@letsencrypt.org',
|
||||
license='Apache License 2.0',
|
||||
|
||||
packages=find_packages(),
|
||||
install_requires=install_requires,
|
||||
entry_points={
|
||||
|
|
|
|||
|
|
@ -16,7 +16,12 @@ install_requires = [
|
|||
setup(
|
||||
name='letsencrypt-compatibility-test',
|
||||
version=version,
|
||||
description="Compatibility tests for Let's Encrypt client",
|
||||
url='https://github.com/letsencrypt/letsencrypt',
|
||||
author="Let's Encrypt Project",
|
||||
author_email='client-dev@letsencrypt.org',
|
||||
license='Apache License 2.0',
|
||||
|
||||
packages=find_packages(),
|
||||
install_requires=install_requires,
|
||||
entry_points={
|
||||
|
|
|
|||
|
|
@ -17,7 +17,12 @@ install_requires = [
|
|||
setup(
|
||||
name='letsencrypt-nginx',
|
||||
version=version,
|
||||
description="Nginx plugin for Let's Encrypt client",
|
||||
url='https://github.com/letsencrypt/letsencrypt',
|
||||
author="Let's Encrypt Project",
|
||||
author_email='client-dev@letsencrypt.org',
|
||||
license='Apache License 2.0',
|
||||
|
||||
packages=find_packages(),
|
||||
install_requires=install_requires,
|
||||
entry_points={
|
||||
|
|
|
|||
|
|
@ -17,7 +17,12 @@ else:
|
|||
setup(
|
||||
name="letshelp-letsencrypt",
|
||||
version=version,
|
||||
description="Let's help Let's Encrypt client",
|
||||
url='https://github.com/letsencrypt/letsencrypt',
|
||||
author="Let's Encrypt Project",
|
||||
author_email='client-dev@letsencrypt.org',
|
||||
license="Apache License 2.0",
|
||||
|
||||
packages=find_packages(),
|
||||
install_requires=install_requires,
|
||||
entry_points={
|
||||
|
|
|
|||
5
setup.py
5
setup.py
|
|
@ -77,11 +77,12 @@ testing_extras = [
|
|||
setup(
|
||||
name='letsencrypt',
|
||||
version=version,
|
||||
description="Let's Encrypt",
|
||||
description="Let's Encrypt client",
|
||||
long_description=readme, # later: + '\n\n' + changes
|
||||
url='https://github.com/letsencrypt/letsencrypt',
|
||||
author="Let's Encrypt Project",
|
||||
author_email='client-dev@letsencrypt.org',
|
||||
license='Apache License 2.0',
|
||||
url='https://letsencrypt.org',
|
||||
classifiers=[
|
||||
'Environment :: Console',
|
||||
'Environment :: Console :: Curses',
|
||||
|
|
|
|||
Loading…
Reference in a new issue