1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/usr/bin/env python
#
from distutils.core import setup
from DistUtilsExtra.command import *
setup(name="unity-scope-youporn",
version="0.1",
author="David Calle",
author_email="davidc@framli.eu",
url="http://launchpad.net/onehundredscopes",
license="GNU General Public License (GPL)",
data_files=[
('lib/unity-scope-youporn', ['src/unity-scope-youporn']),
('lib/unity-scope-youporn', ['src/tiny-video-parser']),
('share/dbus-1/services', ['unity-scope-youporn.service']),
('share/unity/lenses/xadult', ['youporn.scope']),
], cmdclass={"build": build_extra.build_extra, })
|