-
Notifications
You must be signed in to change notification settings - Fork 14
/
pyproject.toml
44 lines (35 loc) · 957 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
32
33
34
35
36
37
38
39
40
41
42
43
44
[project]
name = "dahuffman"
version = "0.4.3-alpha"
authors = [
{ name = "Stefaan Lippens", email = "soxofaan@gmail.com" },
]
description = "Pure Python Huffman encoder and decoder module"
readme = "README.rst"
requires-python = ">=3.7"
classifiers = [
"Intended Audience :: Developers",
"Topic :: System :: Archiving :: Compression",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
license = { text = "MIT License" }
keywords = ["huffman", "compression", "encoding", "decoding"]
[project.urls]
"Homepage" = "https://github.com/soxofaan/dahuffman"
"Bug Tracker" = "https://github.com/soxofaan/dahuffman/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
include = [
"/dahuffman/**/*.py",
"/dahuffman/codecs/*.pickle",
"/tests/**/*.py",
]
[tool.hatch.build.targets.wheel]
exclude = [
"/tests",
]
[tool.isort]
profile = "black"