-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (43 loc) · 1.05 KB
/
Copy pathpyproject.toml
File metadata and controls
46 lines (43 loc) · 1.05 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
[project]
dependencies = [
"aiohttp",
"alembic",
"beautifulsoup4",
"commitizen",
"discord-py",
"loguru",
"pyright",
"sentry-sdk",
"psycopg",
]
optional-dependencies = { dev = [
"bandit",
"pre-commit",
"pyright",
"types-beautifulsoup4",
] }
name = "traveller"
version = "0.11.6"
requires-python = ">=3.12"
authors = [{ name = "Alex Pavlenko", email = "oleksa.pavlenko@gmail.com" }]
description = "Automation bot for ukrainian servers"
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
urls.Homepage = "https://github.com/diraven/traveller"
urls.Issues = "https://github.com/diraven/traveller/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.commitizen]
version = "0.11.6"
tag_format = "v$version"
version_files = ["pyproject.toml:^version", "__init__.py"]
[tool.pyright]
ignore = [".*", "node_modules"]
reportMissingImports = true
reportMissingTypeStubs = true
pythonVersion = "3.12"
typeCheckingMode = "strict"