-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (22 loc) · 861 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# This file is inspirated by http://bazaar.launchpad.net/~rojtberg/teatime/mainline/view/head:/setup.py from TeaTime app
#
# Requires python-distutils-extra package
from distutils.core import setup
from DistUtilsExtra.command import *
setup(
cmdclass = {"build": build_extra.build_extra,
"build_i18n": build_i18n.build_i18n},
name = "yet-another-timer",
version = "1.0",
description = "Remake of Timer-applet for Unity",
author = "Izidor Matušov",
author_email = "izidor.matusov@gmail.com",
url = "https://github.com/iyonius/Yet-Another-Timer",
license = "GNU GPL v3",
scripts = ["yet-another-timer.py"],
data_files = [("share/applications/", ["yet-another-timer.desktop"])]
)
# vim: tabstop=4 expandtab shiftwidth=4 softtabstop=4