NOCTENTRION GIT
1.0 KB · 40 lines · raw
 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[project]
name = "metergate"
version = "0.1.0"
description = "Tiered usage quotas + capability gating: groups, per-user overrides, calendar-period reset."
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [{ name = "Egor Ivanov" }]
keywords = ["quota", "rate-limit", "usage", "metering", "capability", "tiers", "groups"]
classifiers = [
  "Development Status :: 4 - Beta",
  "Intended Audience :: Developers",
  "License :: OSI Approved :: MIT License",
  "Programming Language :: Python :: 3 :: Only",
  "Topic :: System :: Systems Administration",
]
dependencies = []

[project.optional-dependencies]
postgres = ["psycopg[binary]>=3.1"]
redis = ["redis>=5.0"]
dev = ["pytest>=8"]

[project.scripts]
metergate = "metergate.cli:main"

[project.urls]
Homepage = "https://git.noctentrion.com/egor/metergate"
Source = "https://git.noctentrion.com/egor/metergate"

[tool.hatch.build.targets.wheel]
packages = ["src/metergate"]

[tool.pytest.ini_options]
testpaths = ["tests"]