-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
executable file
·37 lines (34 loc) · 1.34 KB
/
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
29
30
31
32
33
34
35
36
37
#!/usr/bin/env python
import os
import os.path
import commands
from distutils.core import setup
from distutils.core import Command
from distutils.command.install import install
from distutils.command.install_data import install_data
setup(
name = "pastie",
description = "a simple clipboard manager",
author = "Felipe Morales",
author_email = "hel.sheep@gmail.com",
url = "http://github.com/fmoralesc/pastie/",
license = "GNU GPL v3",
version = "0.6.1",
scripts = ["pastie"],
data_files=[
('/usr/share/applications', ['pastie.desktop']),
('/etc/xdg/autostart', ['pastie-startup.desktop']),
('/usr/share/gconf/schemas', ['pastie.schemas']),
('/usr/share/locale/cs/LC_MESSAGES', ['po/cs/pastie.mo']),
('/usr/share/locale/de/LC_MESSAGES', ['po/de/pastie.mo']),
('/usr/share/locale/es/LC_MESSAGES', ['po/es/pastie.mo']),
('/usr/share/locale/ja/LC_MESSAGES', ['po/ja/pastie.mo']),
('/usr/share/locale/ru/LC_MESSAGES', ['po/ru/pastie.mo']),
('/usr/share/locale/pt_BR/LC_MESSAGES', ['po/pt_BR/pastie.mo']),
('/usr/share/locale/uk/LC_MESSAGES', ['po/uk/pastie.mo']),
('/usr/share/locale/it/LC_MESSAGES', ['po/it/pastie.mo']),
('/usr/share/locale/fi/LC_MESSAGES', ['po/fi/pastie.mo']),
('/usr/share/locale/he/LC_MESSAGES', ['po/he/pastie.mo']),
('/usr/share/locale/fr/LC_MESSAGES', ['po/fr/pastie.mo']),
],
packages = ["pastielib"],)