-
Notifications
You must be signed in to change notification settings - Fork 3
/
Pipfile
54 lines (49 loc) · 1.17 KB
/
Pipfile
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
# Pipfile
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[packages]
# See README.md section `pipenv update` for help updating.
#
# These versions should match `setup.py:setup.install_requires`
#
attrs = "==23.1.0"
#discogs-client = "2.3.0"
requests = "==2.31.0"
musicbrainzngs = "==0.7.1"
mutagen = "==1.47.0"
Pillow = "==10.1.0"
pypref = "==3.3.0"
tabulate = "==0.9.0"
typing-extensions = "4.8.0"
[dev-packages]
# $ pipenv install --dev
# this section should match `setup.py:setup.extras_require`
codecov = "*"
coveralls = "*"
# explicitly include `exceptiongroup` else error during Travis CI
# ModuleNotFoundError: No module named 'exceptiongroup'
# See Issue #23
exceptiongroup = "*"
mypy = "*"
pip-run = "*"
pipenv = "*"
# `pluggy` is required by `pytest`, but not installed in CircleCI run of pytest
pluggy = "*"
pytest = "*"
pytest-cov = "*"
pytest-dependency = "*"
pyyaml = ">=4.2b1"
setuptools = "*"
twine = "*"
types-requests = "2.31.0.10"
types-setuptools = "*"
types-tabulate = "0.9.0.3"
wheel = "*"
yamllint = "*"
[win-packages]
# $ pipenv install --win
py2exe = { version = "*", markers = "sys_platform== 'win32'" }
[pipenv]
allow_prereleases = false