-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
50 lines (43 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
[tool.poetry]
authors = ["Arash Hatami <hatamiarash7@gmail.com>"]
classifiers = [
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Development Status :: 5 - Production/Stable",
]
description = "Check URLs that filtered ( or not ) in Iran."
homepage = "https://arash-hatami.ir"
keywords = ["internet", "censorship", "filtering"]
license = "MIT"
name = "check-filter"
packages = [{include = "check_filter"}]
readme = "README.md"
repository = "https://github.com/hatamiarash7/CheckFiltering"
version = "2.3.4"
[tool.poetry.dependencies]
dnspython = "^2.4.0"
python = "^3.10"
typer = {extras = ["all"], version = ">=0.15,<0.16"}
validators = ">=0.34,<0.35"
[tool.poetry.group.test.dependencies]
pytest = "^8.0.0"
pytest-asyncio = "^0.25.0"
[tool.poetry.group.dev.dependencies]
pylint = "^3.0.0"
pytest = "^8.0.0"
pytest-asyncio = "^0.25.0"
[tool.poetry.scripts]
check-filter = "check_filter.cli:app"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/hatamiarash7/CheckFiltering/issues"
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]