forked from kgaughan/uwhoisd
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (30 loc) · 875 Bytes
/
pyproject.toml
File metadata and controls
35 lines (30 loc) · 875 Bytes
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
[project]
name = "uwhoisd"
version = "0.1.0"
description = "Universal domain WHOIS proxy server."
authors = [{name="Raphaël Vinot", email="raphael@vinot.info"}]
license = "MIT"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"redis[hiredis] (>=5.1.0,<6.0)",
"tornado (>=6.5.2)",
"beautifulsoup4 (>=4.14.3)",
"publicsuffix2 (>=2.20191221)"
]
[project.scripts]
uwhoisd = 'uwhoisd:main'
run_backend = 'bin.run_backend:main'
start = 'bin.start:main'
stop = 'bin.stop:main'
shutdown = 'bin.shutdown:main'
update = "bin.update:main"
uwhoisd_manager = "bin.uwhoisd_manager:main"
[project.optional-dependencies]
docs = ["Sphinx (>=9.0.4) ; python_version >= \"3.11\""]
[tool.poetry.group.dev.dependencies]
mypy = "^1.19.0"
types-redis = "^4.6.0.20241004"
[build-system]
requires = ["poetry-core>=2.0"]
build-backend = "poetry.core.masonry.api"