File: setup.py

package info (click to toggle)
reportbug 6.4.4%2Bdeb7u1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 1,020 kB
  • sloc: python: 8,367; makefile: 73; sh: 48; lisp: 31
file content (28 lines) | stat: -rwxr-xr-x 1,045 bytes parent folder | download | duplicates (3)
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/env python

from setuptools import setup
import reportbug
import os
import glob

# i18n = []
# for lang in glob.glob('*.po'):
#     lang = lang[:-3]
#     if lang == 'messages':
#         continue
#     i18n.append( ('share/locale/%s/LC_MESSAGES' % lang,
#                   ['i18n/%s/LC_MESSAGES/foomatic-gui.mo' % lang]) )

setup(name='reportbug', version=reportbug.VERSION_NUMBER,
      description='bug reporting tool',
      author='reportbug maintainence team',
      author_email='reportbug-maint@lists.alioth.debian.org',
      url='http://alioth.debian.org/projects/reportbug',
      data_files=[('share/reportbug', ['share/handle_bugscript',
                                       'share/reportbug.el',
                                       'share/debian-swirl.svg']),
                  ('share/bug/reportbug', ['share/presubj', 'share/script',
                                           'share/control'])],
      license='MIT',
      packages=['reportbug','reportbug.ui'],
      scripts=['bin/reportbug', 'bin/querybts'])