-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
30 lines (29 loc) · 1.03 KB
/
setup.py
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
# -*- coding: utf-8 -*-
from distutils.core import setup, Extension
setup(
name = 'py-q4pg',
py_modules = ['q4pg'],
version = '0.2.0',
description = 'A simple transactional message queue using PostgreSQL in Python.',
author='Shin Aoyama',
author_email = "[email protected]",
url = "https://github.com/smihica/py-q4pg",
download_url = "",
keywords = ["db", "queue", "psql"],
install_requires = ['psycopg2', 'sqlalchemy'],
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Database",
"Topic :: Database :: Front-Ends",
"Topic :: Software Development :: Libraries :: Python Modules",
],
long_description = """\
A simple transactional message queue using PostgreSQL in Python.
""",
)