1 Star 0 Fork 0

NATS/nkeys.py

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pyproject.toml 1.96 KB
一键复制 编辑 原始数据 按行查看 历史
Casper Beyer 提交于 2024-09-10 21:15 +08:00 . Bump version
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[project]
name = "nkeys"
authors = [
{ name="Waldemar Quevedo", email="wally@nats.io" },
]
description = "A public-key signature system based on Ed25519 for the NATS ecosystem."
dynamic = ["version"]
readme = "README.md"
license = { text = "Apache 2 License" }
requires-python = ">=3.6"
classifiers = [
'License :: OSI Approved :: Apache Software License',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: Implementation :: CPython',
]
dependencies = ["pynacl"]
[project.urls]
"Homepage" = "https://github.com/nats-io/nkeys.py"
"Bug Tracker" = "https://github.com/nats-io/nkeys.py/issues"
[tool.setuptools]
zip-safe = true
[tool.setuptools.dynamic]
version = {attr = "nkeys.__version__"}
[tool.setuptools.packages.find]
include = ["nkeys"] # package names should match these glob patterns (["*"] by default)
exclude = ["tests"] # exclude packages matching these glob patterns (empty by default)
namespaces = false # to disable scanning PEP 420 namespaces (true by default)
[tool.mypy]
files = ["nkeys"]
python_version = "3.7"
ignore_missing_imports = true
follow_imports = "silent"
show_error_codes = true
check_untyped_defs = true
[tool.yapf]
split_before_first_argument = true
dedent_closing_brackets = true
coalesce_brackets = true
allow_split_before_dict_value = false
indent_dictionary_value = true
split_before_expression_after_opening_paren = true
[tool.isort]
combine_as_imports = true
multi_line_output = 3
include_trailing_comma = true
src_paths = ["nkeys", "tests"]
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/nats-io/nkeys.py.git
git@gitee.com:nats-io/nkeys.py.git
nats-io
nkeys.py
nkeys.py
main

搜索帮助