-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
57 lines (51 loc) · 1.02 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
[build-system]
requires = [
"setuptools >= 65.3.0", # required by pyproject+setuptools_scm integration and editable installs
"setuptools_scm[toml] >= 7.0.5" # required for "no-local-version" scheme
]
build-backend = "setuptools.build_meta"
[project]
name = "ansible-content-capture"
description = "My package description"
readme = "README.rst"
requires-python = ">=3.7"
keywords = ["one", "two"]
license = {text = "Apache License 2.0"}
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"gitdb",
"joblib",
"jsonpickle",
"PyYAML",
"smmap",
"tabulate",
"requests",
"ruamel.yaml",
"filelock",
"rapidfuzz",
]
dynamic = ["version"]
[tool.black]
line-length = 150
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.flake8]
ignore = "E203, W503,"
max-line-length = 150
[tool.setuptools_scm]
local_scheme = "no-local-version"
write_to = "src/ansible_content_capture/_version.py"