-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
79 lines (66 loc) · 1.66 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
76
77
78
79
[project]
name = "pyutils"
version = "0.5.5"
authors = [{ name = "Jylpah", email = "[email protected]" }]
description = "Misc Python utils and classes"
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Environment :: Console",
"Framework :: Pydantic",
"Framework :: aiohttp",
"Topic :: Games/Entertainment",
]
dependencies = [
"aiofiles>=23.1.0",
"aiohttp~=3.9.1",
"Brotli>=1.1.0",
"aiodns>=3.0.0",
"aioconsole>=0.6.1",
# "aiosqlite>=0.19.0",
"aiocsv>=1.2.4",
"alive-progress>=3.1.1",
"click>=8.1",
# "isort>=5.12.0",
"pydantic>=1.10.7, == 1.*",
"pymongo>=4.3.3",
]
[project.optional-dependencies]
dev = [
"build>=0.10.0",
"mypy==1.2.0",
"pip-chill==1.0.3",
"pytest",
"pytest-asyncio",
"pytest-datafiles",
"pytest-cov>=4",
"pytest-timeout",
"types-aiofiles>=23.1.0.1",
]
[project.urls]
"Homepage" = "https://github.com/Jylpah/pyutils"
"Bug Tracker" = "https://github.com/Jylpah/pyutils/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/pyutils"]
[tool.mypy]
plugins = ["pydantic.mypy"]
exclude = ['tmp']
mypy_path = ['src']
[tool.black]
# line-length = 100
include = '\.pyi?$'
[tool.pytest.ini_options]
minversion = "7.0"
addopts = "-v --cov=src"
filterwarnings = [
'ignore:Inheritance class ThrottledClientSession from ClientSession is discouraged:DeprecationWarning',
]
[tool.pyright]
reportGeneralTypeIssues = false