forked from ansible/ansible-creator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
69 lines (58 loc) · 1.92 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
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools >= 45",
"setuptools_scm[toml]>=6.2"
]
[project]
requires-python = ">=3.10"
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Topic :: Software Development :: Code Generators',
'Topic :: Utilities',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: Implementation :: CPython',
]
dynamic = ["version", "dependencies", "optional-dependencies"]
name = "ansible-creator"
description = "A CLI tool for scaffolding Ansible Content."
readme = "README.md"
authors = [{ "name" = "Nilashish Chakarborty", "email" = "nchakrab@redhat.com" }]
maintainers = [{ "name" = "Ansible by Red Hat", "email" = "info@ansible.com" }]
license = { text = "GPL-3.0-only" }
keywords = ["ansible"]
[project.urls]
homepage = "https://github.com/ansible-community/ansible-creator"
documentation = "https://ansible-creator.readthedocs.io/en/latest/"
repository = "https://github.com/ansible-community/ansible-creator"
changelog = "https://github.com/ansible-community/ansible-creator/releases"
[project.scripts]
ansible-creator = "ansible_creator.cli:main"
[tool.setuptools.dynamic]
dependencies = {file = "requirements.txt"}
[tool.setuptools_scm]
local_scheme = "no-local-version"
write_to = "src/ansible_creator/_version.py"
[tool.ruff]
# Allow lines to be as long as 100 characters.
line-length = 100
fix = true
[tool.pylint]
[tool.pylint.format]
max-line-length = 100
[tool.pylint.master]
ignore = [
"_version.py", # built by setuptools_scm
]
[tool.pylint.messages_control]
disable = [
"too-few-public-methods",
"too-many-locals",
]