forked from dalibo/pg_activity
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 645 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (21 loc) · 645 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import sys
from setuptools import setup
if sys.version_info < (2, 6):
raise SystemExit('ERROR: pg_activity need at least python 2.6 to work.')
setup(
name = 'pg_activity',
version = '1.0.0',
author = 'Julien Tachoires',
author_email = 'julmon@gmail.com',
scripts = ['bin/pg_activity'],
url = 'https://github.com/julmon/pg_activity',
license = 'LICENSE.txt',
description = 'htop like utility for PostgreSQL activity monitoring.',
install_requires = [
"psutil >= 0.4.1",
"psycopg2 >= 2.2.1",
],
data_files = [
('/usr/share/man/man1', ['docs/man/pg_activity.1.gz'])
]
)