-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (43 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
47 lines (43 loc) · 1.05 KB
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
[project]
name = "SlyAPI"
version = "0.6.1"
description = "No-boilerplate, async and typed web api access with oauth1/2."
readme = "README.md"
requires-python = ">=3.10"
license = { file="LICENSE" }
authors = [{name="Dunkyl 🔣🔣"}]
classifiers = [
"Operating System :: OS Independent"
]
dependencies = [
'aiohttp >= 3.7',
'aiodns >= 3.0.0',
'charset-normalizer >= 3.0.1',
'pick',
'termcolor',
'PyJWT >= 2.9',
'cryptography >= 43.0.0',
'typing_extensions'
]
[project.optional-dependencies]
dev = [
# testing
'pytest',
'pytest-asyncio',
# docs
'myst-parser',
'furo',
'sphinxcontrib-trio',
'sphinx-copybutton',
'sphinxext-opengraph'
]
[project.urls]
Homepage = "https://docs.dunkyl.net/SlyAPI-Python/"
Repository = "https://github.com/dunkyl/SlyAPI-Python"
Documentation = "https://docs.dunkyl.net/SlyAPI-Python/"
"Bug Tracker" = "https://github.com/dunkyl/SlyAPI-Python/issues"
[build-system]
requires = ["setuptools", "wheel"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["test"]