-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
48 lines (45 loc) · 1.35 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
[tool.poetry]
name = "robox"
version = "0.2.3"
description = "Robox is a simple library for exploring/scraping the web or testing a website you’re developing."
authors = ["Dan Claudiu Pop <[email protected]>"]
license = "BSD 3"
readme = "README.md"
repository = "https://github.com/danclaudiupop/robox"
homepage = "https://github.com/danclaudiupop/robox"
keywords = ["httpx", "scraping", "testing"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Internet :: WWW/HTTP",
"Framework :: AsyncIO",
"Framework :: Trio",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3 :: Only",
]
include = ["LICENSE"]
[tool.poetry.dependencies]
python = "^3.8"
httpx = "^0.21.1"
beautifulsoup4 = "^4.9.3"
aiofiles = "^0.8.0"
httpx-cache = "^0.4.0"
tenacity = "^8.0.1"
[tool.poetry.dev-dependencies]
pytest = "^7.0.1"
pytest-cov = "^3.0.0"
pytest-asyncio = "^0.17.2"
respx = "^0.19.2"
black = "^22.1"
flake8 = "^4.0.1"
isort = "^5.10.1"
pre-commit = "^2.17.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"