-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
61 lines (54 loc) · 1.48 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]
[tool.poetry]
name = "spidermatch"
version = "0.2.0"
homepage = "https://github.com/agucova/spidermatch"
description = "App for setting up automated spiders for incidents covered by local news in a certain country."
authors = ["Agustín Covarrubias <[email protected]>"]
readme = "README.md"
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Win32 (MS Windows)',
'Environment :: MacOS X',
'Environment :: X11 Applications',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Natural Language :: Spanish',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Software Development',
'Topic :: Communications :: Email',
'Topic :: Office/Business',
]
packages = [
{ include = "spidermatch" },
{ include = "tests", format = "sdist" },
]
[tool.poetry.dependencies]
python = ">=3.8,<3.12"
qt-material = "^2.10"
PyQt6 = "^6.2.3"
zenserp = "^0.2"
beartype = "^0.10.4"
rich = "^12.2.0"
luqum = "^0.11.0"
hypofuzz = "^23.4.1"
[tool.poetry.dev-dependencies]
bumpversion = "^0.6"
coverage = "^6.3"
isort = "^5.10"
pytest = "^7.1"
black = "^22.1"
pyinstaller = "^5.0.1"
Pillow = "^9.1.0"
[tool.poetry.scripts]
spidermatch = 'spidermatch.main:run'
[tool.poetry.group.dev.dependencies]
hypothesis = "^6.68.2"
ruff = "^0.0.254"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.isort]
profile = "black"