-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
67 lines (58 loc) · 1.33 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
66
67
[tool.poetry]
name = "regctl"
version = "0.1.0"
description = "Regctl"
authors = ["20C <code@20c.com>"]
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/fullctl/regctl"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.11",
"Topic :: Internet",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
]
[tool.poetry.dependencies]
python = "^3.11"
structlog = ">=24.4"
fastapi = ">=0.111"
uvicorn = ">=0.30.1"
httpx = ">=0.27.0"
rdap = ">=1.5"
phonenumbers = ">=8.13"
googlemaps = ">=4.10"
redis = ">=5.0.7"
#[tool.poetry.dependencies.rdap]
#git = "https://github.com/20c/ctl.git"
#branch = "main"
#path = "/home/vegu/20c/rdap"
#develop = true
[tool.poetry.dev-dependencies]
# testing
coverage = ">=5"
pytest = ">=6"
pytest-django = ">=3.8"
pytest-filedata = ">=0.4.0"
pytest-cov = "*"
tox = ">=3.20"
tox-gh-actions = ">2.9.1"
# linting
bandit = ">=1.6.2"
mypy = ">=0.950"
pre-commit = ">=2.13"
pyupgrade = ">=2.19"
ruff = ">=0.1"
# docs
markdown = "*"
markdown-include = ">=0.5,<1"
mkdocs = ">=1.2.3"
[tool.ruff]
# Same as Black.
line-length = 88
indent-width = 4
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"