forked from cyberdelia/trunk
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
30 lines (27 loc) · 779 Bytes
/
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 setuptools import setup, find_packages
with open('README.rst') as f:
readme = f.read()
setup(
name='trunk',
version='0.3.0',
description='Making postgres listen/notify easier.',
long_description=readme,
author='Timothée Peignier',
author_email='[email protected]',
url='https://github.com/cyberdelia/trunk',
license='MIT',
packages=find_packages(),
zip_safe=False,
install_requires=[
'psycopg2>=2.4.2',
],
include_package_data=True,
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities',
]
)