File: setup.py

package info (click to toggle)
pglistener 5.2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 332 kB
  • sloc: python: 784; perl: 368; sh: 126; sql: 89; makefile: 2
file content (32 lines) | stat: -rw-r--r-- 736 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
29
30
31
32
#!/usr/bin/env python3

from setuptools import setup

setup(
    name='pglistener',
    version='5.0',
    author='Collabora SysAdmin Team',
    author_email='sysadmin@collabora.com',
    license='GPLv2+',
    license_file='COPYING',
    packages=[
        'pglistener',
    ],
    scripts=[
        'useradm/bin/pua',
        'bin/pglistener',
        'bin/pglistener-update',
    ],
    install_requires=[
        'python3-psycopg2',
    ],
    extra_requires={
        'systemd': ['sdnotify'],
    },
    classifiers=[
        'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
        'Programming Language :: Python',
        'Programming Language :: Python :: 3',
        'Topic :: Utilities',
    ],
)