1
by David Callé
Branch init + packaging |
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, }) |