-
Notifications
You must be signed in to change notification settings - Fork 59
/
pyproject.toml
97 lines (89 loc) · 2.94 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
90
91
92
93
94
95
96
97
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.regarding]
release_name = "Sunshine"
years = "2002-2024"
[tool.poetry]
name = "eyeD3"
version = "0.9.8"
description = "Python audio data toolkit (ID3 and MP3)"
authors = ["Travis Shirk <[email protected]>"]
maintainers = ["Travis Shirk <[email protected]>"]
homepage = "https://eyeD3.nicfit.net/"
repository = "https://github.com/nicfit/eyeD3"
license = "GPL-3.0-or-later"
classifiers = [
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Topic :: Multimedia :: Sound/Audio :: Editors",
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers",
"Operating System :: POSIX",
"Natural Language :: English",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
keywords = ["id3", "mp3", "python"]
readme = "README.rst"
packages = [
{include = "eyed3"},
]
include = [
"poetry.lock",
"README.rst", "LICENSE", "Makefile", "requirements.txt", "MANIFEST.in",
"AUTHORS.rst", "CONTRIBUTING.rst", "HISTORY.rst",
"tox.ini",
"tests/**/*.py",
"docs/",
"requirements/*.txt",
"examples/*",
"eyed3/plugins/DisplayPattern.ebnf",
]
exclude = [
"docs/_build",
]
[tool.poetry.scripts]
eyeD3 = "eyed3.main:_main"
[tool.poetry.dependencies]
python = "^3.8"
filetype = "^1.0.7"
deprecation = "^2.1.0"
# yaml-plugin extra
"ruamel.yaml" = {version = "^0.16.12", optional = true}
# art-plugin extra
Pillow = {version = ">=8.0.1,<11.0.0", optional = true}
pylast = {version = "^4.0.0", optional = true}
requests = {version = "^2.25.0", optional = true}
# Test extra
pytest = {version = "^6.2.1", optional = true}
coverage = {version = "^5.3.1", optional = true, extras = ["toml"]}
pytest-cov = {version = "^2.10.1", optional = true}
tox = {version = "^3.20.1", optional = true}
factory-boy = {version = "^3.1.0", optional = true}
flake8 = {version = "^3.8.4", optional = true}
check-manifest = {version = "^0.45", optional = true}
[tool.poetry.extras]
test = ["pytest", "pytest-cov", "tox", "factory-boy", "flake8",
"check-manifest", "coverage"]
yaml-plugin = ["ruamel.yaml"]
art-plugin = ["Pillow", "pylast", "requests"]
[tool.poetry.group.dev.dependencies]
# FIXME: https://github.com/nicfit/eyeD3/issues/615
#gitchangelog = {git = "https://github.com/nicfit/gitchangelog.git", rev = "nicfit.py"}
regarding = "^0.1.4"
wheel = "^0.37.1"
twine = "^4.0.1"
Sphinx = "^5.2.3"
sphinx-rtd-theme = "^1.0.0"
sphinx-issues = "^3.0.1"
cogapp = "^3.3.0"
Paver = "^1.3.4"
"nicfit.py" = {version = "0.8.7", extras = ["cookiecutter"]}
poetry2setup = {git = "[email protected]:abersheeran/poetry2setup.git", rev = "master"}
[tool.coverage.html]
directory = "build/tests/coverage"