Unify setup.py: description/url/author/author_email.

This commit is contained in:
Jakub Warmuz 2015-09-26 22:49:46 +00:00
parent 20131de9fb
commit b5036e36ad
No known key found for this signature in database
GPG key ID: 2A7BAD3A489B52EA
6 changed files with 28 additions and 2 deletions

View file

@ -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={

View file

@ -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={

View file

@ -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={

View file

@ -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={

View file

@ -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={

View file

@ -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',