-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (45 loc) · 1.56 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
[project]
name = "base64c"
version = "0.0.9"
description = "Fast Base64 encoding/decoding with SSE2 and VSX optimizations"
authors = [{name = "Oscar Bahamonde", email = "[email protected]"}]
license = {text = "MIT"}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: C",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities"
]
requires-python = ">=3.8"
readme = "README.md"
[tool.poetry]
name = "base64c"
version = "0.0.9"
description = "Fast Base64 encoding/decoding with SSE2 and VSX optimizations."
authors = ["obahamonde <[email protected]>"]
readme = "README.md"
packages = [{include = "base64c", from = "src"}]
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
[project.optional-dependencies]
dev = ["pytest", "pyright", "isort", "black","pytest-html","setuptools"]
[tool.poetry.dependencies]
python = "^3.8"
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["base64c"]
package-dir = {"base64c" = "src/base64c"}
[tool.setuptools.package-data]
base64c = ["*.pyi"]
[tool.setuptools_scm]