~davidc3/onehundredscopes/calculator-raring

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: David Callé
  • Date: 2011-11-20 20:07:56 UTC
  • Revision ID: davidc@framli.eu-20111120200756-d9sie94zx0hfcfb5
Branch init + packaging

Show diffs side-by-side

added added

removed removed

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