-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
71 lines (62 loc) · 2.04 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
68
69
70
71
[tool.poetry]
name = "podping-hivewriter"
version = "2.0.0"
license = "MIT"
authors = ["Alecks Gates <[email protected]>", "Brian of London <[email protected]>"]
maintainers = ["Alecks Gates <[email protected]>", "Brian of London <[email protected]>"]
readme = "README.md"
description = "This is a tool used to submit RFC 3987-compliant International Resource Identifiers as a Podping notification on the Hive blockchain."
homepage = "http://podping.org/"
repository = "https://github.com/Podcastindex-org/podping-hivewriter"
keywords = ["hive", "blockchain", "podping", "podcasting20"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Framework :: AsyncIO",
"Framework :: Pytest",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[tool.poetry.dependencies]
python = "^3.8,<3.12"
cffi = "^1.14.5"
pydantic = "^1.9.0"
single-source = "^0.3.0"
rfc3987 = "^1.3.8"
asgiref = "^3.5"
typer = {extras = ["all"], version = "^0.3.2"}
capnpy-agates = { version = "^0.9.0", allow-prereleases = true }
lighthive = "^0.4.0"
plexo = {version = "1.0.0a8", allow-prereleases = true}
podping-schemas = {version = "^0.1.0a17", allow-prereleases = true}
[tool.poetry.group.dev.dependencies]
black = "^21.5b2"
isort = "^5.8.0"
pytest = "^7.2.0"
pytest-cov = "^4.0.0"
pytest-asyncio = "^0.20.0"
bandit = "^1.7.4"
pytest-timeout = "^2.0.2"
typer-cli = "^0.0.12"
flake8 = "^5.0.4"
mypy = "^0.982"
patch-env = "^1.0.0"
pytest-mock = "^3.8.2"
[tool.poetry.scripts]
podping = "podping_hivewriter.cli.podping:app"
[build-system]
requires = ["setuptools", "poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
target-version = ['py38', 'py39', 'py310', 'py311']
[tool.isort]
profile = "black"
multi_line_output = 3
[tool.pytest.ini_options]
testpaths = [
"tests",
]
log_cli = true
log_cli_level = "INFO"
log_cli_format = "%(asctime)s [%(levelname)8s] %(message)s (%(filename)s:%(lineno)s)"
log_cli_date_format = "%Y-%m-%d %H:%M:%S"