-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
66 lines (59 loc) · 1.22 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[project]
name = "class_inspector"
authors = [
{name="Ed Cuss"},
]
description = "class inspector package"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
readme = "README.md"
requires-python = ">=3.9"
version = "0.3.1"
dependencies = [
"attrs >= 22.2.0",
"libcst >=1.5.1,<2",
"python-dotenv >= 0.20.0",
"black >= 24",
"isort >= 5",
]
[dependency-groups]
dev = [
"hypothesis>=6.124.9",
"ipykernel>=6.29.5",
"numpy>=2.0.2",
"pandas>=2.2.3",
"pre-commit>=4.1.0",
"pytest>=8.3.4",
"pytest-cov>=6.0.0",
"ruff>=0.9.4",
"sphinx>=7.4.7",
"tox>=4.24.1",
]
[tool.ruff]
extend-exclude = ["mock_package"]
lint.extend-select = ["I", "W"]
lint.ignore = ["E741"]
line-length = 88
[tool.pytest.ini_options]
testpaths = [
"tests",
]
[tool.coverage.run]
branch = true
source = ["**/site-packages/class_inspector"]
omit = [
"**/mock_package/*",
"*__init__.py",
"*_logger.py",
]
[tool.coverage.report]
show_missing = true
fail_under = 80