-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
34 lines (32 loc) · 934 Bytes
/
setup.py
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
#!/usr/bin/python
from distutils.core import setup
setup(
name='lastfmsubmitd',
version='1.0.6',
description='Last.fm song submission daemon',
author='Decklin Foster',
author_email='[email protected]',
url='http://www.red-bean.com/decklin/lastfmsubmitd/',
classifiers=[
'Intended Audience :: End Users/Desktop',
'Development Status :: 4 - Beta',
'License :: MIT/X Consortium License',
'Topic :: Multimedia :: Sound :: Players',
'Operating System :: POSIX',
'Environment :: No Input/Output (Daemon)',
'Programming Language :: Python',
],
package_dir = {'': 'lib'},
packages = ['lastfm'],
scripts = [
'lastfmsubmitd',
],
data_files=[
('share/man/man1', [
'doc/lastfmsubmitd.1',
]),
('lib/lastfmsubmitd', [
'lastfmsubmit',
]),
],
)