-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
84 lines (72 loc) · 2.13 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
72
73
74
75
76
77
78
79
80
81
82
83
84
[build-system]
build-backend = 'hatchling.build'
requires = [ 'hatchling' ]
[project]
authors = [
{email='[email protected]', name='Sitt Guruvanich'},
]
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Financial and Insurance Industry',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS',
'Operating System :: MacOS :: MacOS 9',
'Operating System :: MacOS :: MacOS X',
'Operating System :: OS Independent',
'Operating System :: Unix',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Office/Business :: Financial',
'Topic :: Office/Business :: Financial :: Investment',
'Topic :: Other/Nonlisted Topic',
'Topic :: Security :: Cryptography',
]
dependencies = [
'APScheduler >=3.10.4',
'click >=8.1.7',
'docker >=6.1.3',
'pydantic >=2.5.2',
'pyyaml >=6.0.1',
'rich >=13.7.0',
'blessed >=1.20.0',
]
description = 'Command line interface used for generating local Lightning test environment'
homepage = 'https://github.com/krutt/aesir'
include = [
{path='src/aesir/schemas.yml', format=['sdist', 'wheel']}
]
keywords = ['anonymous', 'bitcoin', 'cashu', 'chaum', 'chaumian', 'cli', 'ecash', 'lightning']
license = 'MIT'
name = 'aesir'
packages = [{from='src', include='aesir'}]
readme = 'README.md'
repository = 'https://github.com/krutt/aesir'
requires-python = '>=3.9'
version = '0.4.9'
[project.scripts]
aesir = 'aesir.core:cli'
[tool.mypy]
disallow_incomplete_defs = true
disallow_untyped_calls = true
disallow_untyped_defs = true
ignore_missing_imports = true
[tool.uv]
dev-dependencies = [
'mypy >=1.7.1',
'pytest >=7.4.3',
'ruff >=0.2.2',
'types-pyyaml >=6.0.12.12',
]
[tool.ruff]
indent-width = 2
line-length = 100
target-version = 'py38'
[tool.ruff.lint.per-file-ignores]
'__init__.py' = ['F401'] # Ignore unused imports