-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (30 loc) · 958 Bytes
/
Copy pathpyproject.toml
File metadata and controls
36 lines (30 loc) · 958 Bytes
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pytans"
version = "0.4.0"
description = "Pure-Python tabled Asymmetric Numeral Systems (tANS / FSE-style) entropy coder"
readme = "README.md"
requires-python = ">=3.9"
authors = [{ name = "Gareth Cairns" }]
keywords = ["compression", "entropy-coding", "ans", "tans", "fse", "zstd"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: System :: Archiving :: Compression",
"Typing :: Typed",
]
[project.urls]
Homepage = "https://github.com/GarethCa/Py-tANS"
Source = "https://github.com/GarethCa/Py-tANS"
[project.scripts]
pytans = "pytans.cli:main"
[project.optional-dependencies]
dev = ["pytest>=7"]
[tool.hatch.build.targets.wheel]
packages = ["src/pytans"]
[tool.pytest.ini_options]
testpaths = ["tests"]