forked from lackhove/m4baker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·23 lines (21 loc) · 818 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·23 lines (21 loc) · 818 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python
from distutils.core import setup
from sys import version
if version < '2.2.3':
from distutils.dist import DistributionMetadata
DistributionMetadata.classifiers = None
DistributionMetadata.download_url = None
setup(name = 'm4baker',
description = 'Bake full-featured m4b-audiobooks',
author = 'Kilian Lackhove',
author_email = 'kilian.lackhove@gmail.com',
url='http://code.google.com/p/m4baker/',
classifiers = [
'Programming Language :: Python :: 2',
],
packages = ['m4baker',],
package_dir = {'m4baker': 'src',},
scripts = ['scripts/m4baker'],
data_files = [('/usr/share/applications', ['m4baker.desktop']),
('/usr/share/pixmaps', ['m4baker.png'])]
)