forked from aszabo00/quickbolt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
49 lines (45 loc) · 1.21 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
[tool.poetry]
name = "quickbolt"
version = "0.2.1"
description = "Asynchronously make and validate requests!"
authors = ["Ashton Szabo <[email protected]>"]
repository = "https://github.com/aszabo00/quickbolt"
readme = "README.md"
license = "MIT"
classifiers = [
"Intended Audience :: Information Technology",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Libraries",
"Typing :: Typed",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
]
[tool.poetry.dependencies]
python = "^3.11"
pytest = "^7.3.2"
pytest-xdist = "^3.3.1"
pytest-asyncio = "^0.21.0"
pypeln = "^0.4.9"
aiohttp = "^3.8.4"
httpx = "^0.24.1"
numpy = "^1.25.0"
orjson = "^3.9.1"
aiofiles = "^23.1.0"
aiologger = "^0.7.0"
aiocsv = "^1.2.4"
uvloop = "^0.17.0"
[tool.poetry.group.dev.dependencies]
black = "^23.3.0"
autoflake = "^2.1.1"
flake8 = "^6.0.0"
isort = "^5.12.0"
pytest-cov = "^4.1.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
known_first_party = "quickbolt"
sections = "FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER"