Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a Pipfile. See #2818 #2977

Merged
merged 1 commit into from Sep 25, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -53,3 +53,4 @@ quodlibet/coverage/*

.pytest_cache
test-results
Pipfile.lock
1 change: 1 addition & 0 deletions quodlibet/MANIFEST.in
Expand Up @@ -23,6 +23,7 @@ include MANIFEST.in
include quodlibet/packages/README.rst
include *.py
include setup.cfg
include Pipfile
recursive-include docs *.py Makefile *.rst *.png *.ico *.svg *.css
prune docs/_build_guide
prune docs/_build_all
Expand Down
15 changes: 15 additions & 0 deletions quodlibet/Pipfile
@@ -0,0 +1,15 @@
[packages]
feedparser = '~=5.2'
mutagen = '~=1.34'
pycairo = '~=1.8'
pygobject = '~=3.18'
dbus-python = {version = "~=1.2", sys_platform = "== 'linux'"}

[dev-packages]
pytest = '*'
polib = '*'
pycodestyle = '*'
pyflakes = '*'
sphinx = '*'
sphinx_rtd_theme = '*'
xvfbwrapper = {version = "~=0.2", sys_platform = "== 'linux'"}