diff options
author | Lee Garrett <lgarrett@rocketjump.eu> | 2022-06-13 23:13:57 +0200 |
---|---|---|
committer | Lee Garrett <lgarrett@rocketjump.eu> | 2022-06-13 23:13:57 +0200 |
commit | df2a2cd18c338647061f3448248f8b97b6971f49 (patch) | |
tree | f223b6b9084be551de18fdb4fe0d596c68a9cebc /setup.cfg | |
parent | 71ed02a1e802462d5d9b5f7e0fad42307a175278 (diff) | |
download | debian-ansible-core-df2a2cd18c338647061f3448248f8b97b6971f49.zip |
New upstream version 2.13.0
Diffstat (limited to 'setup.cfg')
-rw-r--r-- | setup.cfg | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 00000000..a5fac874 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,48 @@ +[metadata] +name = ansible-core +version = attr: ansible.release.__version__ +description = Radically simple IT automation +long_description = file: README.rst +author = Ansible, Inc. +author_email = info@ansible.com +url = https://ansible.com/ +project_urls = + Bug Tracker=https://github.com/ansible/ansible/issues + CI: Azure Pipelines=https://dev.azure.com/ansible/ansible/ + Code of Conduct=https://docs.ansible.com/ansible/latest/community/code_of_conduct.html + Documentation=https://docs.ansible.com/ansible-core/ + Mailing lists=https://docs.ansible.com/ansible/latest/community/communication.html#mailing-list-information + Source Code=https://github.com/ansible/ansible +license = GPLv3+ +classifiers = + Development Status :: 5 - Production/Stable + Environment :: Console + Intended Audience :: Developers + Intended Audience :: Information Technology + Intended Audience :: System Administrators + License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+) + Natural Language :: English + Operating System :: POSIX + Programming Language :: Python :: 3 + Programming Language :: Python :: 3.8 + Programming Language :: Python :: 3.9 + Programming Language :: Python :: 3.10 + Programming Language :: Python :: 3 :: Only + Topic :: System :: Installation/Setup + Topic :: System :: Systems Administration + Topic :: Utilities + +[options] +zip_safe = False +python_requires = >=3.8 +include_package_data = True +scripts = + bin/ansible-test + +[flake8] +max-line-length = 160 + +[egg_info] +tag_build = +tag_date = 0 + |