-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
41 lines (35 loc) · 957 Bytes
/
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "chess.com"
authors = [
{ name="Artur Saradzhyan", email="sarartur.ruk@gmail.com" },
]
description = "Python Wrapper for Chess.com API"
keywords = ['chess', 'chess.com']
readme = "README.md"
license = {text = "MIT License"}
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"aiohttp>=3",
"requests>=2",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/sarartur/chess.com"
Documentation = "https://chesscom.readthedocs.io"
[tool.setuptools.dynamic]
version = {attr = "chessdotcom.__version__"}
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-p no:warnings --ignore=tests/smoke/endpoint_test.py"
[tool.bandit]
exclude_dirs = ["tests/*"]