-
Notifications
You must be signed in to change notification settings - Fork 26
/
pyproject.toml
51 lines (45 loc) · 1.38 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
50
51
[tool.poetry]
name = "scrapyscript"
version = "0.0.0" # set based on git tag by CI
description = "Run a Scrapy spider programmatically from a script or a Celery task - no project required."
authors = ["Jeff Schnurr <jschnurr@gmail.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/jschnurr/scrapyscript"
keywords = ["scrapy"]
classifiers = [
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Framework :: Scrapy',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License'
]
include = [
'LICENCE',
'CHANGELOG.md'
]
[tool.poetry.urls]
"Bug tracker" = "https://github.com/jschnurr/scrapyscript/issues"
"Changelog" = "https://github.com/jschnurr/scrapyscript/blob/main/CHANGELOG.md"
[tool.poetry.dependencies]
python = "^3.8"
billiard = "^3.6"
Scrapy = "^2.5.1"
[tool.poetry.dev-dependencies]
black = "^21.9b0"
pytest = "^6.2"
pylint = "^2.9"
tox = "^3.24"
celery = "^5.1"
pytest-timeout = "^2.0.1"
pytest-mock = "^3.6.1"
coverage = {extras = ["toml"], version = "^6.2"}
tox-poetry-installer = {extras = ["poetry"], version = "^0.8.2"}
[tool.coverage.run]
omit = [".*", "*/site-packages/*", "tests/*"]
[tool.coverage.report]
fail_under = 100
[build-system]
requires = ["poetry>=1.1.12"]
build-backend = "poetry.masonry.api"