-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (37 loc) · 927 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
[project]
name = "mus"
authors = [
{ name="Mark Fiers", email="[email protected]" }, ]
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent", ]
dynamic = [
"version", ]
dependencies = [
"colorama",
"jinja2",
"rich",
"keyring",
"keyrings.alt",
"click"]
[project.optional-dependencies]
dev = ["pytest"]
eln = ["nbconvert", "ipython", "requests", "fpdf"]
all = ["nbconvert", "ipython", "requests", "fpdf", "pytest"]
[project.scripts]
mus = "mus.cli:cli"
[project.urls]
Homepage = "https://github.com/mfiers/mus"
Issues = "https://github.com/mfiers/mus/issues "
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "src/mus/__about__.py"
#[tool.hatch.build.targets.sdist]
#include = [
# "*.tex"
#]