Skip to content

Commit eaeb4b5

Browse files
committed
Add pyproject.toml for nats-jwt package
1 parent e701340 commit eaeb4b5

File tree

1 file changed

+48
-0
lines changed

1 file changed

+48
-0
lines changed

nats-jwt/pyproject.toml

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
[build-system]
2+
requires = ["setuptools>=61.0"]
3+
build-backend = "setuptools.build_meta"
4+
5+
[project]
6+
name = "nats-jwt"
7+
version = "0.0.0"
8+
description = "Python library for NATS JWT claim generation and validation"
9+
readme = "README.md"
10+
requires-python = ">=3.11"
11+
license = "Apache-2.0"
12+
keywords = ["nats", "jwt", "claims", "authentication"]
13+
authors = [
14+
{ name = "Casper Beyer", email = "[email protected]" },
15+
]
16+
classifiers = [
17+
"Development Status :: 4 - Beta",
18+
"Programming Language :: Python",
19+
"Programming Language :: Python :: 3.11",
20+
"Programming Language :: Python :: 3.12",
21+
"Programming Language :: Python :: 3.13",
22+
"Programming Language :: Python :: Implementation :: CPython",
23+
"Programming Language :: Python :: Implementation :: PyPy",
24+
]
25+
dependencies = []
26+
27+
[project.optional-dependencies]
28+
nkeys = ["nkeys"]
29+
30+
[project.urls]
31+
Documentation = "https://github.com/nats-io/nats.py"
32+
Issues = "https://github.com/nats-io/nats.py/issues"
33+
Source = "https://github.com/nats-io/nats.py"
34+
35+
[tool.setuptools.packages.find]
36+
where = ["src"]
37+
38+
[tool.uv]
39+
dev-dependencies = [
40+
"pytest>=7.0.0",
41+
"nkeys",
42+
]
43+
44+
[tool.pytest.ini_options]
45+
testpaths = ["tests"]
46+
47+
[tool.ruff.lint]
48+
ignore = ["TRY301", "S104"]

0 commit comments

Comments
 (0)