-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (34 loc) · 1.07 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "base26"
version = "1.0.5"
description = "Package implements base26 encoding/decoding algorithm."
authors = [
{ name = "Sergey Popinveskiy", email = "[email protected]" },
]
license = {text = "MIT"}
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
]
dependencies = []
requires-python = ">=3.8"
[project.optional-dependencies]
dev = ["pytest==7.1.3"]
[project.urls]
Source = "https://github.com/yggdr-corp/pybase26"