diff options
Diffstat (limited to 'setup.cfg')
-rw-r--r-- | setup.cfg | 92 |
1 files changed, 92 insertions, 0 deletions
diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..3fc6d50 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,92 @@ +[metadata] +name = ansible-core +version = attr: ansible.release.__version__ +description = Radically simple IT automation +long_description = file: README.md +long_description_content_type = text/markdown +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.9 + Programming Language :: Python :: 3.10 + Programming Language :: Python :: 3.11 + Programming Language :: Python :: 3 :: Only + Topic :: System :: Installation/Setup + Topic :: System :: Systems Administration + Topic :: Utilities + +[options] +zip_safe = False +python_requires = >=3.9 +scripts = + bin/ansible-test + +[options.package_data] +ansible = + config/*.yml + executor/powershell/*.ps1 + galaxy/data/*.yml + galaxy/data/*/*.j2 + galaxy/data/*/*.md + galaxy/data/*/*/*.cfg + galaxy/data/*/*/*.j2 + galaxy/data/*/*/*.md + galaxy/data/*/*/*/*.j2 + galaxy/data/*/*/*/*.yml + galaxy/data/*/*/*/.git_keep + galaxy/data/*/*/*/inventory + galaxy/data/*/*/.git_keep + galaxy/data/*/*/inventory + keyword_desc.yml + module_utils/csharp/*.cs + module_utils/powershell/*.psm1 + plugins/*/*.yml +ansible_test = + _data/*/*.in + _data/*/*.ps1 + _data/*/*.txt + _data/*/*.yml + _data/*/*/*.ini + _data/ansible.cfg + _data/coveragerc + _util/*/*/*.ps1 + _util/*/*/*.py + _util/*/*/*.sh + _util/*/*/*/*.ini + _util/*/*/*/*.json + _util/*/*/*/*.ps1 + _util/*/*/*/*.psd1 + _util/*/*/*/*.py + _util/*/*/*/*.txt + _util/*/*/*/*/*.cfg + _util/*/*/*/*/*.ps1 + _util/*/*/*/*/*.py + _util/*/*/*/*/*.yml + config/*.template + config/*.yml + +[flake8] +max-line-length = 160 + +[egg_info] +tag_build = +tag_date = 0 + |