-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 756 Bytes
/
setup.py
File metadata and controls
22 lines (20 loc) · 756 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env python
from setuptools import setup
from get_git_version import get_git_version
setup(name='pymarietje',
version=get_git_version(),
description='Curses client for MarietjeD music daemon',
author='Bas Westerbaan',
author_email='bas@westerbaan.name',
url='http://github.com/bwesterb/pymarietje/',
packages=['pymarietje'],
package_dir={'pymarietje': 'src'},
install_requires = ['docutils>=0.3',
'mutagen>=1.20',
'pyyaml>=3.00'],
entry_points = {
'console_scripts': [
'upload-to-marietje = pymarietje.upload:main',
'marietje = pymarietje.cursesui:main',
]}
)