File: setup.py

package info (click to toggle)
reportbug 7.10.3%2Bdeb11u2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,132 kB
  • sloc: python: 9,118; sh: 70; makefile: 32; lisp: 31
file content (25 lines) | stat: -rwxr-xr-x 960 bytes parent folder | download | duplicates (2)
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
#!/usr/bin/env python3

from setuptools import setup
import reportbug

# 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 maintenance team',
      author_email='debian-reportbug@lists.debian.org',
      url='https://salsa.debian.org/reportbug-team/reportbug',
      data_files=[('share/reportbug', ['share/handle_bugscript',
                                       'share/reportbug.el',]),
                  ('share/bug/reportbug', ['share/presubj', 'share/script',
                                           'share/control'])],
      license='MIT',
      packages=['reportbug', 'reportbug.ui'],
      scripts=['bin/reportbug', 'bin/querybts'])