-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (41 loc) · 1.42 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
[build-system]
requires = [ "setuptools",]
build-backend = "setuptools.build_meta"
[project]
name = "check_link"
version = "0.0.11"
description = "Check if URL is available"
classifiers = [ "Development Status :: 4 - Beta", "License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10",]
keywords = [ "URL", "validator", "HTTP",]
requires-python = ">= 3.7"
dependencies = [ "httpx", "requests",]
authors = [
{name = "DataShades", email = "[email protected]"},
{name = "Sergey Motornyuk", email = "[email protected]"},
]
maintainers = [
{name = "DataShades", email = "[email protected]"},
]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.license]
text = "AGPL"
[project.urls]
Homepage = "https://github.com/DataShades/check-link"
[project.optional-dependencies]
faster = []
cli = [ "click",]
dev = [ "pytest", "pytest-asyncio", "pytest-httpx", "pytest-cov", "aioresponses", "responses", "faker",]
[project.scripts]
check-link = "check_link.cli:main"
[tool.setuptools]
include-package-data = false
[tool.pytest.ini_options]
testpaths = [ "tests",]
asyncio_mode = "auto"
[tool.setuptools.packages.find]
exclude = [ "tests",]
namespaces = false
[tool.black]
preview = true