-
-
Notifications
You must be signed in to change notification settings - Fork 40
/
pyproject.toml
49 lines (45 loc) · 1.28 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 = "scrapelib"
version = "2.3.0"
description = ""
readme = "README.md"
authors = ["James Turk <[email protected]>"]
license = "BSD-2-Clause"
repository = "https://github.com/jamesturk/scrapelib"
classifiers=[
"Development Status :: 6 - Mature",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.poetry.scripts]
scrapeshell = "scrapelib.__main__:scrapeshell"
[tool.poetry.dependencies]
python = "^3.7"
requests = {extras = ["security"], version = "^2.28.1"}
urllib3 = "^1.26"
[tool.poetry.dev-dependencies]
mypy = "^0.961"
flake8 = "^3.9.0"
mock = "^4.0.3"
pytest = "^7.1.2"
pytest-cov = "^2.11.1"
coveralls = "^3.3.1"
mkdocs-material = "^9.2.7"
mkdocstrings = "0.19.0"
types-requests = "^2.28.11"
types-mock = "^4.0.15"
importlib-metadata = "<5.0"
pytest-httpbin = "^2.0.0"
Flask = "2.1.0"
Werkzeug = "2.0.3"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"