File: setup.py

package info (click to toggle)
plprofiler 4.2.5-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 944 kB
  • sloc: python: 2,125; ansic: 1,440; perl: 670; sql: 357; sh: 55; makefile: 28
file content (36 lines) | stat: -rw-r--r-- 1,066 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
33
34
35
36
from setuptools import setup

setup(
    name = 'plprofiler-client',
    description = 'PL/pgSQL Profiler module and command line tool',
    version = '4.2',
    author = 'Jan Wieck',
    author_email = 'jan@wi3ck.info',
    url = 'https://github.com/bigsql/plprofiler',
    license = 'Artistic License and CDDL',
    packages = ['plprofiler', ],
    long_description = """PL/pgSQL Profiler module and command line tool
==============================================

This is the Python module and command line tool to
control the PL/pgSQL Profiler extension for PostgreSQL.

Please visit https://github.com/bigsql/plprofiler for
the main project.""",
    long_description_content_type = 'text/markdown',
    package_data = {
        'plprofiler': [
            'lib/FlameGraph/README',
            'lib/FlameGraph/README-plprofiler',
            'lib/FlameGraph/flamegraph.pl',
        ],
    },
    install_requires = [
        'configparser',
    ],
    entry_points = {
        'console_scripts': [
            'plprofiler = plprofiler:main',
        ]
    },
)