-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
59 lines (55 loc) · 1.52 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
[tool.poetry]
authors = ["Jérémie Lumbroso <lumbroso@cs.princeton.edu>"]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Artistic Software",
]
description = "The clean and modern way of accessing IMSLP data and scores programmatically."
homepage = "https://github.com/jlumbroso/imslp"
include = [
"README.md",
"LICENSE",
"cache/imslp-people-cache-2020-08-02.zip",
"cache/imslp-works-cache-2020-08-02.zip",
]
keywords = [
"IMSLP",
"IMSLP-scraper",
"IMSLP-scraping",
"sheet-music",
"music-data",
]
license = "LGPL-3.0-or-later"
name = "imslp"
readme = "README.md"
repository = "https://github.com/jlumbroso/imslp"
version = "0.2.3"
[tool.poetry.dependencies]
bs4 = "^0.0.1"
mwclient = "^0.10.1"
python = "^3.8"
requests = "^2.24.0"
[tool.poetry.dev-dependencies]
codecov = "^2.1.10"
pipdeptree = "^2.3.3"
pytest = "^7.2.0"
pytest-cov = "^2.10.1"
pytest-mock = "^3.3.1"
pytest-repeat = "^0.9.1"
pytest-subtests = "^0.3.2"
sphinx = "^3.3.0"
sphinx-autodoc-typehints = "^1.11.1"
sphinx-rtd-theme = "^0.5.0"
# dependabot dependency pins (vulnerability warnings)
babel = "^2.10.1"
jinja2 = "^3.1.2"
pygments = "^2.12.0"
urllib3 = "^1.26.9"
[build-system]
build-backend = "poetry.masonry.api"
requires = ["poetry>=0.12"]