-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (53 loc) · 1.21 KB
/
pyproject.toml
File metadata and controls
59 lines (53 loc) · 1.21 KB
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
[project]
name = "super-changelog"
version = "0.1.0"
description = "Org level changelog"
authors = [
{name = "Dinne Kopelevich",email = "dinne.kopelevich@gsa.gov"}
]
license = {text = "CC0"}
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"requests>=2.32.4,<3.0.0",
"pygithub>=2.6.1,<3.0.0",
"python-dateutil>=2.9.0.post0,<3.0.0",
"markdown>=3.8.2,<4.0.0"
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
package-mode = false
[tool.poetry.dependencies]
python = "^3.11"
requests = "^2.32.4"
pygithub = "^2.6.1"
python-dateutil = "^2.9.0"
markdown = "^3.8.2"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
pytest-cov = "^4.1.0"
pytest-mock = "^3.11.1"
responses = "^0.23.3"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = [
"--cov=scripts",
"--cov-report=html",
"--cov-report=term-missing",
"-v"
]
pythonpath = ["."]
markers = [
"integration: marks tests as integration tests (deselect with '-m \"not integration\"')",
]
[tool.coverage.run]
source = ["scripts"]
omit = [
"test/*",
"*/__init__.py"
]