-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpyproject.toml
89 lines (73 loc) · 2.13 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "fretboardgtr"
authors = [
{ name="Antoine Gibek", email="[email protected]"},
]
description="Package that make easy creation of fretboards and chords diagrams"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Natural Language :: English',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
]
keywords=['fretboardgtr', "fretboard", "chord", "guitar", "bass"]
dependencies=["reportlab<=4", "svglib", "svgwrite", "pypdf"]
# Dynamic for setuptools
dynamic = ["version"]
[project.license]
file = "LICENSE"
[project.urls]
homepage = "https://github.com/antscloud/fretboardgtr"
documentation = "https://fretboardgtr.readthedocs.io/en/latest"
repository = "https://github.com/antscloud/fretboardgtr"
changelog = "https://github.com/antscloud/fretboardgtr/blob/main/CHANGELOG.md"
"Bug Tracker" = "https://github.com/antscloud/fretboardgtr/issues"
[project.optional-dependencies]
dev = [
"fretboardgtr",
# Pytest
"pytest>=6.1.1",
"pytest-cov>=2.10.1",
"pytest-mock>=3.6.1",
"coverage>=5.3",
# Documentation
"sphinx>=4.5.0",
"myst",
"myst-parser",
"sphinx_book_theme>=0.3.0",
# Pre-commit
"pre-commit",
# Formatting
"black",
"flake8",
# Typing
"mypy",
# Python version capabilities
"six",
# Utils
"pypdf"
]
[tool.setuptools]
zip-safe=false
[tool.setuptools.packages.find]
include = ["fretboardgtr", "fretboardgtr.*"]
[tool.mypy]
explicit_package_bases = true
disallow_untyped_defs = true
ignore_missing_imports = true
exclude = ['build/','venv', "tests", "docs"]
[tool.docformatter]
recursive = true
blank = true
syntax= "numpy"