-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 730 Bytes
/
setup.py
File metadata and controls
25 lines (22 loc) · 730 Bytes
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
from distutils.core import setup
VERSION = (0, 1, 3, 0)
__version__ = VERSION
__versionstr__ = '.'.join(map(str, VERSION))
setup(
name = 'gDBPool',
version = '0.1.3',
author = 'Florian von Bock',
author_email = 'f@vonbock.info',
url = 'https://github.com/fvbock/gDBPool',
license = 'MIT License',
packages = ['gdbpool',],
description = 'Database (PostgreSQL) pooling and interaction/query runner for gevent.',
long_description = open('README.rst').read(),
classifiers = [
"Topic :: Database",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
],
)