-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
58 lines (48 loc) · 1.38 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
[project]
name = "pbtranslate"
dynamic = ["version"]
authors = [
{ name = "Backplane BV", email = "actualben@users.noreply.github.com" },
]
description = "platform for running MSDA ETLs"
readme = "README.md"
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3",
# "License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)",
"Operating System :: OS Independent",
]
[project.scripts]
pbtranslate = "pbtranslate:__main__"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project.urls]
"Homepage" = "https://github.com/edencehealth/pbtranslate"
"Bug Tracker" = "https://github.com/backplane/pbtranslate"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
[tool.setuptools.package-data]
"pbtranslate" = ["py.typed"]
[tool.vulture]
# exclude = ["*file*.py", "dir/"]
# ignore_decorators = ["@app.route", "@require_*"]
# ignore_names = ["visit_*", "do_*"]
make_whitelist = true
min_confidence = 80
paths = ["src"]
sort_by_size = true
verbose = true
[tool.bandit]
exclude_dirs = ["tests"]
[tool.pylint]
max-line-length = 100
disable = ["too-few-public-methods", "too-many-arguments"]
[tool.pytest.ini_options]
# https://docs.pytest.org/en/7.1.x/reference/customize.html
minversion = "6.0"
addopts = "-v"
testpaths = ["tests/"]
pythonpath = ["src"]