This repository was archived by the owner on Feb 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
51 lines (44 loc) · 1.46 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
[tool.poetry]
name = "steam-tradeoffer-manager"
version = "0.1.2"
description = "Small package that help managing steam trade offers and steam bots"
license = "MIT"
authors = ["somespecialone <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/somespecialone/python-steam-tradeoffer-manager/"
repository = "https://github.com/somespecialone/python-steam-tradeoffer-manager/"
documentation = "https://somespecialone.github.io/python-steam-tradeoffer-manager/"
keywords = ["steam", "offer", "trade", "steamio"]
classifiers = [
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Operating System :: OS Independent",
"Typing :: Typed"
]
include = ["LICENSE"]
packages = [{ include = "steam_tradeoffer_manager" }]
[tool.poetry.dependencies]
python = "^3.10"
steamio = "^0.8.6"
[tool.poetry.dev-dependencies]
pytest = "^7.0.1"
pytest-asyncio = "0.18.2"
pytest-mock = "^3.7.0"
pytest-cov = "^3.0.0"
mkdocs = "^1.2.3"
mkdocs-material = "^8.2.5"
mkdocs-git-revision-date-localized-plugin = "^1.0.0"
black = "*"
[tool.black]
line-length = 120
target-version = ['py310']
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.coverage.run]
source = ["steam_tradeoffer_manager"]
omit = ["*/_monkey_patch.py", "*/__init__.py", "*/abc.py"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"