-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
85 lines (74 loc) · 1.98 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
[backend]
requires = ['setuptools>=64', 'setuptools-scm>=8']
build-backend = 'setuptools.build_meta'
[project]
name = 'cycl'
version='0.1.0'
requires-python = '>=3.8'
description = 'CLI and Python SDK to help identify cross-stack import/export circular dependencies, for a given AWS account and region.'
readme = 'README.md'
keywords = ['aws', 'cdk', 'cycle', 'circular', 'dependency', 'infrastructure', 'boto3', 'cloud']
classifiers = [
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3',
'Programming Language :: Python',
'Topic :: Software Development',
]
dependencies = [
'boto3~=1.0',
'networkx~=3.0',
]
[project.urls]
Repository = 'http://github.com/tcm5343/cycl'
[project.scripts]
cycl = 'cycl.cli:app'
[tool.ruff]
line-length = 125
[tool.ruff.lint]
# desire is to add COM812 too
select = ['ALL']
ignore = [
'COM', # flake8-commas
'D', # pydocstyle
'ERA001', # commented-out-code
'FIX002', # line-contains-todo
'Q000', # bad-quotes-inline-string
'Q003', # avoidable-escaped-quote
'T201', # print
'TD', # flake8-todos
]
[tool.ruff.lint.per-file-ignores]
'tests/**' = [
'ANN', # flake8-annotations
'PLR2004', # magic-value-comparison
'S101', # assert
]
'__init__.py' = [
'F401', # unused-import
]
[tool.ruff.format]
quote-style = 'single'
indent-style = 'space'
docstring-code-format = true
[tool.coverage.run]
branch = true
source = ['./src']
[tool.coverage.report]
fail_under = 90
show_missing = true
skip_covered = true
skip_empty = true
omit = [
'__*__.py'
]
[tool.pytest.ini_options]
log_cli_level = 'INFO'
addopts = ['--import-mode=importlib']