mirror of
https://github.com/beetbox/beets.git
synced 2026-02-15 20:03:25 +01:00
setup.py should actually work now
This commit is contained in:
parent
71c5141f80
commit
67bfa2275f
1 changed files with 13 additions and 3 deletions
16
setup.py
16
setup.py
|
|
@ -38,9 +38,19 @@ setup(name='beets',
|
|||
the database.
|
||||
""",
|
||||
|
||||
packages=['beets'],
|
||||
packages=['beets',
|
||||
'beets.autotag',
|
||||
'beets.player',
|
||||
],
|
||||
scripts=['bts'],
|
||||
|
||||
requires=['sqlite3', 'mutagen', 'eventlet (>=0.8)'],
|
||||
)
|
||||
provides=['beets'],
|
||||
requires=['sqlite3',
|
||||
'mutagen',
|
||||
'musicbrainz2 (>=0.7.0)',
|
||||
'munkres',
|
||||
'cmdln',
|
||||
'eventlet (>=0.8)',
|
||||
],
|
||||
)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue