-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
75 lines (63 loc) · 1.61 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
[project]
name = "dvplc"
description = "CLI app to convert Dava SmartDLC .dvpl files used in Wargaming.net's World of Tanks Bliz MMO game"
readme = "README.md"
version = "0.3.4"
authors = [{ name = "Jylpah", email = "[email protected]" }]
license = { text = "MIT License" }
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Environment :: Console",
]
dependencies = [
"lz4>=4.3.2",
"aiofiles>=23.1.0",
"aioconsole>=0.6.1",
"pyutils @ git+https://github.com/Jylpah/[email protected]",
"result>=0.15.0",
"typer>=0.9.0",
]
[project.optional-dependencies]
dev = [
"build>=0.10.0",
"jupyter>=1.0.0",
"mypy>=1.2.0",
"pip-chill>=1.0.3",
"pytest>=7.4.3",
"pytest-asyncio",
"pytest-datafiles",
"pytest-cov>=4.1.0",
"pytest-mypy",
"ruff>=0.1.9",
"types-aiofiles>=23.1.0.1",
]
[project.scripts]
dvplc = "dvplc.dvplc:app"
[project.urls]
"Homepage" = "https://github.com/Jylpah/dvplc"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/dvplc"]
[tool.mypy]
mypy_path = ['src']
[tool.pyright]
reportGeneralTypeIssues = false
[tool.black]
# line-length = 120
include = '\.pyi?$'
[tool.coverage.run]
omit= ['tests/*']
[tool.pytest.ini_options]
minversion = "7.4"
addopts = "-v --cov=src"
pythonpath = "src" # avoid import path append in test files
filterwarnings = [
'ignore:Inheritance class ThrottledClientSession from ClientSession is discouraged:DeprecationWarning',
]