-
Notifications
You must be signed in to change notification settings - Fork 54
/
pyproject.toml
99 lines (91 loc) · 2.36 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
[build-system]
requires = [
"setuptools >= 40.8.0",
"wheel >= 0.29.0",
]
build-backend = 'setuptools.build_meta'
[project]
name = "pulp-ansible"
version = "0.24.0.dev"
description = "Pulp plugin to manage Ansible content, e.g. roles"
readme = "README.rst"
authors = [
{name="Pulp Ansible Plugin Project Developers", email="[email protected]"}
]
classifiers = [
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Operating System :: POSIX :: Linux",
"Development Status :: 5 - Production/Stable",
"Framework :: Django",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
]
requires-python = ">=3.9"
dependencies = [
"async_lru>=1.0,<2.1",
"galaxy_importer>=0.4.5,<0.5",
"GitPython>=3.1.24,<3.2",
"jsonschema>=4.9,<4.24",
"Pillow>=10.3,<11.1",
"pulpcore>=3.49.0,<3.70",
"PyYAML>=5.4.1,<7.0",
"semantic_version>=2.9,<2.11",
]
[project.urls]
Homepage = "https://pulpproject.org"
Documentation = "https://pulpproject.org/pulp_ansible/"
Repository = "https://github.com/pulp/pulp_ansible"
"Bug Tracker" = "https://github.com/pulp/pulp_ansible/issues"
Changelog = "https://pulpproject.org/pulp_ansible/changes/"
[project.entry-points."pulpcore.plugin"]
pulp_ansible = "pulp_ansible:default_app_config"
[project.entry-points."pytest11"]
pulp_ansible = "pulp_ansible.pytest_plugin"
[tool.setuptools.packages.find]
where = ["."]
[tool.towncrier]
package = "pulp_ansible"
filename = "CHANGES.md"
directory = "CHANGES/"
title_format = "## {version} ({project_date}) {{: #{version} }}"
template = "CHANGES/.TEMPLATE.md"
issue_format = "[#{issue}](https://github.com/pulp/pulp_ansible/issues/{issue})"
start_string = "[//]: # (towncrier release notes start)\n"
underlines = ["", "", ""]
[tool.black]
line-length = 100
target-version = ["py36", "py37"]
exclude = '''
/(
\.eggs
| \.git
| \.venv
| _build
| build
| dist
| migrations
| docs
)/
'''
[tool.check-manifest]
ignore = [
".bumpversion.cfg",
"CHANGES/**",
"CONTRIBUTING.rst",
"CODEOWNERS",
"HISTORY.rst",
"dev_requirements.txt",
"doc_requirements.txt",
"docs/**",
"staging_docs/**",
"pulp_ansible/tests/assets/**",
"template_config.yml",
".travis/**",
".travis.yml",
".pep8speaks.yml",
".ci/**",
".github/**",
"lint_requirements.txt",
".flake8",
]