mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
README.rst should always exist so no need to set a default value
This commit is contained in:
parent
6300e71903
commit
988808c066
1 changed files with 3 additions and 11 deletions
10
setup.py
10
setup.py
|
@ -158,17 +158,9 @@ for extra_requirements_filename in os.listdir(extra_requirements_dir):
|
|||
with open(os.path.join(extra_requirements_dir, extra_requirements_filename)) as extra_requirements_file:
|
||||
extra_requirements[filename_match.group(1)] = extra_requirements_file.read().splitlines()
|
||||
|
||||
try:
|
||||
# Retrieve the long description from the README
|
||||
with open('README.rst', 'r') as readme_file:
|
||||
longdesc = readme_file.read()
|
||||
except (IOError, OSError):
|
||||
longdesc = ('Ansible is a radically simple IT automation system. It handles'
|
||||
' configuration-management, application deployment, cloud provisioning, ad-hoc'
|
||||
' task-execution, and multinode orchestration - including trivializing things like'
|
||||
' zero-downtime rolling updates with load balancers.\n'
|
||||
'\n'
|
||||
'Read the documentation and more at https://ansible.com/'
|
||||
)
|
||||
|
||||
setup(
|
||||
# Use the distutils SDist so that symlinks are not expanded
|
||||
|
|
Loading…
Reference in a new issue