File: setup.py

package info (click to toggle)
software-properties 0.96.20.2-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 4,364 kB
  • ctags: 683
  • sloc: python: 5,125; makefile: 19; sh: 18
file content (27 lines) | stat: -rwxr-xr-x 708 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
#!/usr/bin/env python3

import setuptools
setuptools  # pyflakes
from DistUtilsExtra.auto import setup


setup(name='software-properties',
      version='0.60',
      packages=[
                'softwareproperties',
                'softwareproperties.dbus',
                'softwareproperties.gtk',
                'softwareproperties.kde',
                ],
      scripts=[
               'software-properties-gtk',
               'software-properties-kde',
               'add-apt-repository',
               ],
      data_files=[
                  ('lib/software-properties/',
                   ['software-properties-dbus', ]
                  ),
                  ],
      test_suite="tests",
     )