-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (41 loc) · 1.28 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
[build-system]
requires = ['setuptools>=65.5.1', 'setuptools-scm']
build-backend = "setuptools.build_meta"
[project]
dynamic = ["version"]
name = "endorlabs-atst"
readme = "PyPI.md"
authors = [{name = "Darren Meyer", email = '[email protected]'}]
description = "Endor Labs Automated Tool for Scanning Things (ATST) -- a tool to help deploy and manage Endor Labs in CI pipelines"
requires-python = ">=3.9"
dependencies = [
"click~=8.1",
"requests~=2.31",
"semantic-version~=2.10",
"google-re2~=1.1"
]
[project.urls]
homepage = "https://github.com/endorlabs/atst"
[project.optional-dependencies]
test = [
"pytest~=7.4"
]
[project.scripts]
endorlabs-atst = 'endorlabs_atst.__main__:main'
[tool.setuptools.dynamic]
version = {attr = "endorlabs_atst.__version__"}
[tool.setuptools.packages.find]
where = ["."] # list of folders that contain the packages (["."] by default)
exclude = ["pytest*"]
# include = ["my_package*"] # package names should match these glob patterns (["*"] by default)
# exclude = ["my_package.tests*"] # exclude packages matching these glob patterns (empty by default)
# namespaces = false # to disable scanning PEP 420 namespaces (true by default)
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib"
]
testpaths = [
"pytest"
]
markers = [
]