Revision 5156,
871 bytes
checked in by yasumichi, 11 years ago
(diff) |
rename script.
|
Line | |
---|
1 | #!/usr/bin/env python |
---|
2 | |
---|
3 | from distutils.core import setup |
---|
4 | from glob import glob |
---|
5 | from babel.messages import frontend as babel |
---|
6 | |
---|
7 | setup( name='rpminstall', |
---|
8 | version='0.1', |
---|
9 | description='RPM Package Installer', |
---|
10 | long_description='RPM Package Installer', |
---|
11 | author='Yasumichi Akahoshi', |
---|
12 | author_email='yasumichi@vinelinux.org', |
---|
13 | url='http://trac.vinelinux.org/wiki/Packages/pygtk-rpminstall', |
---|
14 | license='GNU GENERAL PUBLIC LICENSE Version 3', |
---|
15 | |
---|
16 | scripts=['pyrpminstall'], |
---|
17 | package_dir={'rpminstall': 'src'}, |
---|
18 | packages=['rpminstall'], |
---|
19 | package_data={ |
---|
20 | 'rpminstall': ['ui/*.ui', 'ui/icons/*.png'] |
---|
21 | }, |
---|
22 | data_files=[ |
---|
23 | ('share/locale/ja/LC_MESSAGES', glob('locale/ja/LC_MESSAGES/*.mo')) |
---|
24 | ], |
---|
25 | |
---|
26 | cmdclass = { |
---|
27 | 'compile_catalog': babel.compile_catalog, |
---|
28 | 'extract_messages': babel.extract_messages, |
---|
29 | 'init_catalog': babel.init_catalog, |
---|
30 | 'update_catalog': babel.update_catalog |
---|
31 | }, |
---|
32 | ) |
---|
Note: See
TracBrowser
for help on using the repository browser.