-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (57 loc) · 1.69 KB
/
Copy pathpyproject.toml
File metadata and controls
63 lines (57 loc) · 1.69 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
60
61
62
63
[project]
name = "subete"
version = "0.23.0"
description = "The Sample Programs API in Python"
authors = [
{name = "Jeremy Grifski", email = "jeremy.grifski@therenegadecoder.com"}
]
readme = "README.md"
requires-python = ">=3.10,<4.0"
license = {text = "LICENSE"}
dependencies = [
"pyyaml (>=6,<7)",
"gitpython (>=3,<4)",
"requests (>=2.32.4,<3.0.0)",
"glotter2-core (>=0.1.2,<0.2.0)",
]
dynamic = [ "classifiers" ]
[project.urls]
"Bug Tracker" = "https://github.com/TheReneagadeCoder/subete/issues"
"Changelog" = "https://github.com/TheRenegadeCoder/subete/blob/main/docs/changelog.rst"
homepage = "https://github.com/TheReneagadeCoder/subete"
documentation = "https://subete.therenegadecoder.com/en/latest/"
[tool.poetry]
packages = [{include = "subete"}]
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Documentation :: Sphinx",
"Development Status :: 3 - Alpha"
]
[dependency-groups]
dev = [
"pytest (>=9.0.3,<10.0.0)",
"pytest-cov (>=7.1.0,<8.0.0)"
]
docs = [
"sphinx (>=7.4.7,<8.0.0)",
"sphinx-rtd-theme (>=3.0.2,<4.0.0)",
"tomli (>=2.2.1,<3.0.0)"
]
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "WARNING"
log_cli_format = "%(asctime)s [%(levelname)8s] %(message)s (%(filename)s:%(lineno)s)"
log_cli_date_format = "%Y-%m-%d %H:%M:%S"
log_file = "log.log"
log_file_level = "INFO"
log_file_format = "%(asctime)s [%(levelname)8s] %(message)s (%(filename)s:%(lineno)s)"
log_file_date_format = "%Y-%m-%d %H:%M:%S"
[tool.coverage.report]
exclude_lines = [
"# pragma: no cover"
]
fail_under = 100
[build-system]
requires = ["poetry-core>=2.3.1,<3.0.0"]
build-backend = "poetry.core.masonry.api"