-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
39 lines (32 loc) · 968 Bytes
/
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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.build]
include = ["once/*"]
[tool.hatch.version]
source = "vcs"
[tool.hatch.version.raw-options]
local_scheme = "no-local-version"
[tool.hatch.metadata.hooks.vcs.urls]
source_archive = "https://github.com/DelfinaCare/once/archive/{commit_hash}.zip"
[tool.black]
line-length = 100
[project]
name = "once-py"
dynamic = ["version"]
authors = [
{ name="Ali.Ebrahim", email="[email protected]" },
]
description = "Utility for initialization ensuring functions are called only once"
readme = "README.md"
license = "MIT"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/DelfinaCare/once"
Issues = "https://github.com/DelfinaCare/once/issues"
Repository = "https://github.com/DelfinaCare/once.git"