-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (41 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
44 lines (41 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
[tool.poetry]
name = "starbelly"
version = "2.0.0-dev"
description = "Streaming crawler with a graphical user interface"
authors = ["Mark E. Haase <mehaase@gmail.com>"]
license = "MIT"
[tool.poetry.dependencies]
python = ">=3.9,<3.10"
aiohttp = "==3.6.2"
aiohttp-socks = "==0.3.9"
beautifulsoup4 = "==4.9.1"
chardet = "==3.0.4"
feedparser = "^6.0.12"
formasaurus = {version = "^0.9.0", extras = ["with-deps"]}
lxml = "==4.9.4"
protobuf = "==5.29.6"
psutil = "==5.7.0"
python-dateutil = "==2.8.1"
python-mimeparse = "==1.6.0"
pytz = "==2020.1"
rethinkdb = "==2.4.7"
robotexclusionrulesparser = "==1.7.1"
setuptools = "^80.0.0"
trio = "==0.15.1"
trio-asyncio = "==0.11.0"
trio-websocket = "==0.8.0"
w3lib = "1.22.0"
watchdog = "==0.10.2"
yarl = "==1.4.2"
[tool.poetry.group.dev.dependencies]
coverage = "==5.1"
coveralls = "==2.0.0"
pytest-cov = "==2.9.0"
pytest-mock = "==3.1.0"
sphinxcontrib-trio = "==1.1.2"
sphinx-rtd-theme = "==0.4.3"
pytest-trio = "==0.6.0"
trustme = "==0.6.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"