Skip to content

Commit

Permalink
Unify setup.py: description/url/author/author_email.
Browse files Browse the repository at this point in the history
  • Loading branch information
kuba committed Sep 27, 2015
1 parent 20131de commit b5036e3
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 2 deletions.
5 changes: 5 additions & 0 deletions acme/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,12 @@
setup(
name='acme',
version=version,
description='ACME protocol implementation',
url='https://github.com/letsencrypt/letsencrypt',
author="Let's Encrypt Project",
author_email='[email protected]',
license='Apache License 2.0',

packages=find_packages(),
install_requires=install_requires,
extras_require={
Expand Down
5 changes: 5 additions & 0 deletions letsencrypt-apache/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,12 @@
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='[email protected]',
license='Apache License 2.0',

packages=find_packages(),
install_requires=install_requires,
entry_points={
Expand Down
5 changes: 5 additions & 0 deletions letsencrypt-compatibility-test/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,12 @@
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='[email protected]',
license='Apache License 2.0',

packages=find_packages(),
install_requires=install_requires,
entry_points={
Expand Down
5 changes: 5 additions & 0 deletions letsencrypt-nginx/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,12 @@
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='[email protected]',
license='Apache License 2.0',

packages=find_packages(),
install_requires=install_requires,
entry_points={
Expand Down
5 changes: 5 additions & 0 deletions letshelp-letsencrypt/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,12 @@
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='[email protected]',
license="Apache License 2.0",

packages=find_packages(),
install_requires=install_requires,
entry_points={
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,12 @@ def read_file(filename, encoding='utf8'):
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='[email protected]',
license='Apache License 2.0',
url='https://letsencrypt.org',
classifiers=[
'Environment :: Console',
'Environment :: Console :: Curses',
Expand Down

0 comments on commit b5036e3

Please sign in to comment.