File: setup.py

package info (click to toggle)
pius 3.0.0-8
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 432 kB
  • sloc: python: 2,963; perl: 178; makefile: 2; sh: 1
file content (20 lines) | stat: -rwxr-xr-x 430 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
#!/usr/bin/env python3

from distutils.core import setup
from libpius import constants
setup(
  name='pius',
  version=constants.VERSION,
  packages=['libpius'],
  scripts=['pius', 'pius-keyring-mgr', 'pius-party-worksheet', 'pius-report'],
  data_files=[
    (
      'share/man/man1', [
        'doc/pius-keyring-mgr.1',
        'doc/pius.1',
        'doc/pius-report.1',
        'doc/pius-party-worksheet.1'
      ]
    )
  ]
)