-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
32 lines (27 loc) · 912 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
[project]
name = "base91x"
dynamic = ["version"]
description = "base91x encoding/decoding library"
authors = [{ name = "Roman Babenko", email = "babenek@users.noreply.github.com" }]
requires-python = ">=3.8"
readme = "README.md"
keywords = ["encode", "decode", "base91x"]
classifiers = [
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
[project.urls]
"Homepage" = "https://github.com/babenek/base91x"
"Bug Tracker" = "https://github.com/babenek/base91x/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "src/base91x/__init__.py"
[project.scripts]
base91x = "base91x.__main__:main"