forked from pkronstrom/vahti
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
65 lines (60 loc) · 1.39 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
61
62
63
64
65
[tool.black]
line-length = 125
target-version = ['py37']
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.poetry]
name = "vahti"
version = "1.0.0"
description = ""
readme = "README.md"
authors = [
"Felipe Morato <[email protected]>",
]
homepage = "https://github.com/fmorato/vahti/"
documentation = ""
license = "MIT"
keywords = ["webcrawler", "parser", "scrapper"]
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Internet :: WWW/HTTP :: Indexing/Search",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[tool.poetry.scripts]
vahti = "vahti:cli.main"
[tool.poetry.dependencies]
python = "^3.7"
beautifulsoup4 = "^4.7"
aiohttp = "^3.5"
lxml = "^4.4"
dateparser = "^0.7.2"
[tool.poetry.dev-dependencies]
# pre-commit = "^1.10"
coverage = "^4.5"
flake8 = "^3.7"
pylint = "^2.3"
black = { version = "*", allows-prereleases = true }
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"