-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
52 lines (46 loc) · 1.4 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# -*- coding: utf-8 -*-
from os.path import join, dirname
from setuptools import setup, find_packages
install_requires = [
'psycopg2==2.5.4',
'watchdog==0.8.1'
]
tests_require = [
'nose',
'mock',
'coverage',
'pyaml',
'nosexcover'
]
with open(join(dirname(__file__), 'README')) as _file:
long_desc = _file.read().strip()
setup(
name="hermes-pg",
version='0.3.1',
description="Event-driven Postgres client library",
long_description=long_desc,
author="Liam Costello",
author_email="[email protected]",
url="https://github.com/transifex/hermes",
install_requires=install_requires,
tests_require=tests_require,
dependency_links=tests_require,
test_suite="test_hermes.run_tests.run_all",
packages=find_packages(
where='.',
exclude=('test_hermes*', )
),
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Developers",
"Operating System :: Unix",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries :: Application Frameworks"
]
)