-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
17 lines (17 loc) · 927 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from distutils.core import setup
setup(name='gresistor2',
version='0.0.1',
description = 'Aici intra descrierea',
author = 'Pop Gheorghe',
author_email = '[email protected]',
url = 'http://www.roroid.ro',
license = 'GPL',
scripts=['gresistor2'],
data_files = [('share/applications',
['gresistor2.desktop']),('share/gresistor2',
['icon.png']),('share/gresistor2/locale/ro_RO/LC_MESSAGES',
['locale/ro_RO/LC_MESSAGES/default.mo']),('share/gresistor2/locale/en/LC_MESSAGES',
['locale/en/LC_MESSAGES/default.mo']),('share/gresistor2/locale/ru_RU/LC_MESSAGES',
['locale/ru_RU/LC_MESSAGES/default.mo']),('share/gresistor2/locale/de_DE/LC_MESSAGES',
['locale/de_DE/LC_MESSAGES/default.mo'])],
)