-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
31 lines (28 loc) · 885 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
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "pydrumscore"
description = "A python interface for generating drum sheet music through code"
authors = [{name="Rémy Lapointe"}]
urls = {Documentation="https://www.remylapointe.com/PyDrumScore", GitHub="https://github.com/dual-wield-ray/PyDrumScore"}
readme = "README.md"
license = {text = "GNU GPL"}
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"requests",
'importlib-metadata; python_version>"3.8"',
'xmldiff',
'from_root<=1.0.2',
'setuptools-scm',
]
dynamic = ["version"]
[project.scripts]
pydrumscore = "pydrumscore.export:main"
# Gets version number from source control
[tool.setuptools_scm]
write_to = "pydrumscore/__version__.py"
local_scheme = "no-local-version"