-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
60 lines (55 loc) · 1.18 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
52
53
54
55
56
57
58
59
60
[tool.nitpick]
# Use the default style and override some things (like the Python version)
style = ["https://raw.githubusercontent.com/andreoliwa/nitpick/develop/nitpick-style.toml"]
[tool.poetry]
name = "scrapy-tegenaria"
version = "0.1.0"
description = "🕷🕸 Spiders to crawl ads of houses and apartments. 🏠🏢"
authors = ["Augusto W. Andreoli <andreoliwa@gmail.com>"]
[tool.poetry.dependencies]
python = "^3.7"
scrapy = "*"
googlemaps = "*"
keyring = "*"
requests = "*"
imapclient = "*"
arrow = "*"
marshmallow = "*"
click = "*"
plumbum = "*"
prettyconf = "*"
flask = "*"
markupsafe = "*"
werkzeug = "*"
"jinja2" = "*"
itsdangerous = "*"
flask-admin = "*"
flask-marshmallow = "*"
flask-sqlalchemy = "*"
sqlalchemy = "*"
"psycopg2" = "*"
marshmallow-sqlalchemy = "*"
flask-migrate = "*"
flask-wtf = "*"
wtforms = "*"
gunicorn = "*"
toml = "*"
[tool.poetry.dev-dependencies]
flask-debugtoolbar = "*"
flask-script = "*"
pytest = "*"
pytest-runfailed = "*"
webtest = "*"
factory-boy = "*"
faker = "*"
ipdb = "*"
coverage = "*"
pytest-cov = "*"
sphinx = "*"
ipython = "*"
pylint = "*"
[tool.black]
line-length = 120
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"