-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
32 lines (28 loc) · 991 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
[project]
name = "jzp"
description = "A libary for dealing with the compression and decompression of Agilent JZP files."
readme = "README.md"
license = {text = "GPL-3.0-or-later"}
maintainers = [{name = "Antonio Vázquez", email = "[email protected]"}]
authors = [{name = "Antonio Vázquez", email = "[email protected]"}]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python",
]
requires-python = ">=3.7"
dependencies = [
"lzsslib>=0.0.2",
]
dynamic = ["version"]
[project.urls]
"Source Code" = "https://github.com/antoniovazquezblanco/jzp/"
"Issue Tracker" = "https://github.com/antoniovazquezblanco/jzp/issues"
[project.scripts]
jzp = "jzp.cli:main"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = {attr = "jzp.__version__"}