-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
57 lines (52 loc) · 1.63 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[project]
name = "basen-encoder"
version = "1.0.2"
description = "Custom encoder that encodes any binary data to given alphabet."
keywords = [
"generator", "base-encoder", "basen", "base", "base128", "base64", "base32", "base16"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'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 :: 3 :: Only',
'Topic :: Utilities',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
]
authors = [
{ name = "vd", email = "[email protected]" },
]
dependencies = []
requires-python = ">=3.8,<3.13"
readme = "README.md"
license = { file = "LICENSE" }
[project.urls]
homepage = "https://github.com/vd2org/basen"
repository = "https://github.com/vd2org/basen.git"
issues = "https://github.com/vd2org/basen/issues"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm]
distribution = true
[tool.pdm.dev-dependencies]
dev = [
"pytest~=8.0.2",
"ubump~=0.1.10; python_version >= '3.11'",
"requests>=2.31.0",
]
[tool.ubump]
template = "v${major}.${minor}.${patch}"
message = "Bump to ${version}"
tag = true
files = ["src/basen/__init__.py"]