~davidc3/onehundredscopes/adult-precise

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env python
#
from distutils.core import setup
from DistUtilsExtra.command import *

setup(name="unity-lens-adult",
      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-lens-adult', ['src/unity-lens-adult']),
    ('share/dbus-1/services', ['unity-lens-adult.service']),
    ('share/unity/lenses/xadult', ['xadult.lens']),
    ('share/unity/lenses/xadult', ['data/unity-lens-adult.svg']),
    ('share/unity/lenses/xadult', ['data/unity-cat-video.svg']),
    ], cmdclass={"build":  build_extra.build_extra, })