-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
83 lines (72 loc) · 2.32 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
80
81
82
83
[tool.poetry]
name = "aiosteampy"
version = "0.7.3"
description = "Trade and interact with steam market, webapi, guard"
license = "MIT"
authors = ["Dmytro Tkachenko <[email protected]>"]
readme = "README.md"
homepage = "https://aiosteampy.somespecial.one"
repository = "https://github.com/somespecialone/aiosteampy"
documentation = "https://aiosteampy.somespecial.one"
keywords = ["steam", "trade", "steamguard", "asyncio", "steam-market"]
classifiers = [
"Framework :: AsyncIO",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Typing :: Typed",
]
include = ["LICENSE"]
packages = [{ include = "aiosteampy" }]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/somespecialone/aiosteampy/issues"
[tool.poetry.dependencies]
python = "^3.10"
aiohttp = "^3.8"
rsa = "^4.8"
aenum = ">=3.1.2, <4.0.0"
croniter = { version = ">=2.0, <4.0", optional = true }
aiohttp-socks = { version = ">=0.8.4, <1.0.0", optional = true }
[tool.poetry.extras]
converter = ["croniter"]
socks = ["aiohttp-socks"]
all = ["croniter", "aiohttp-socks"]
[tool.poetry.group.dev.dependencies]
black = "^23.12.1"
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
pytest = "^7.2.0"
pytest-asyncio = "^0.20.1"
pytest-cov = "^4.0.0"
python-dotenv = "^1.0.0"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.5.3"
mkdocs-material = "^9.4.7"
mkdocs-git-revision-date-localized-plugin = "^1.2.1"
mkdocs-include-markdown-plugin = "^6.0.3"
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
markers = ["incremental"]
[tool.coverage.run]
source = ["aiosteampy"]
omit = ["*/__init__.py"]
[tool.black]
line-length = 120
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"