-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (41 loc) · 1.3 KB
/
pyproject.toml
File metadata and controls
47 lines (41 loc) · 1.3 KB
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
[project]
name = "gpdiff"
dynamic = ["version"]
description = "Compute 2-way and 3-way diffs of Guitar Pro tablatures"
readme = "README.rst"
license = {text = "LGPL-2.0-or-later"}
authors = [{name = "Sviatoslav Abakumov", email = "dust.harvesting@gmail.com"}]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Artistic Software",
"Topic :: Multimedia :: Sound/Audio",
]
requires-python = ">=3.7"
dependencies = [
"attrs~=22.2",
"PyGuitarPro~=0.9.3",
]
[project.scripts]
gpdiff = "gpdiff.gpdiff:main"
[project.urls]
Code = "https://github.com/Perlence/gpdiff"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["gpdiff"]
[tool.setuptools.dynamic]
version = {attr = "gpdiff.__version__"}
[tool.pytest.ini_options]
testpaths = ["tests"]