-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
30 lines (27 loc) · 905 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
[build-system]
requires = ["setuptools>=57.4.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "binary-file-parser"
version = "0.2.2"
description = "Read/Write binary files after describing their specifications in code (similar to an ORM table schema)"
readme = "README.md"
authors = [{ name = "Divy1211", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
keywords = ["binary", "file", "parser"]
dependencies = [
"alive-progress",
]
requires-python = ">=3.10"
[project.optional-dependencies]
dev = ["pytest", "pylint", "mypy", "flake8"]
docs = ["mkdocs", "mkdocstrings"]
depl = ["build", "twine"]
[project.urls]
Homepage = "https://github.com/Divy1211/BinaryFileParser"