-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
48 lines (44 loc) · 1.4 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
[tool.poetry]
name = "earworm"
version = "0.4.0"
description = "Create a simple web page to listen to audio files in a directory"
authors = ["Puneeth Chaganti <[email protected]>"]
include = ["earworm/static/bundle.js"]
readme = "README.md"
homepage = "https://punchagan.github.io/earworm/"
repository = "https://github.com/punchagan/earworm/"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Multimedia :: Sound/Audio :: Players",
]
[tool.poetry.dependencies]
python = "^3.7.13"
Jinja2 = "^3.0.1"
requests = "^2.25.1"
tinytag = "^1.5.0"
Pillow = "^8.2.0"
PyYAML = "^5.4.1"
python-dateutil = "^2.8.1"
webassets = "^2.0"
dataclasses = {version = "^0.8", python = "~3.6"}
feedgen = "^0.9.0"
[tool.poetry.dev-dependencies]
mypy = "^0.910"
types-requests = "^2.25.0"
types-python-dateutil = "^0.1.4"
types-PyYAML = "^5.4.3"
types-dataclasses = {version = "^0.1.5", python = "~3.6"}
pytest = "^6.2.4"
requests-mock = "^1.9.3"
[tool.poetry.scripts]
earworm = 'earworm.generate:main'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"