-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·70 lines (59 loc) · 1.99 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# -*- coding: utf-8 -
#
# This file is part of couchdbkit released under the MIT license.
# See the NOTICE for more information.
from __future__ import absolute_import
from imp import load_source
import os
import sys
if not hasattr(sys, 'version_info') or sys.version_info < (3, 5, 0):
raise SystemExit("couchdbkit requires Python 3.5 or later.")
from setuptools import setup, find_packages
# open version module
version = load_source("version", os.path.join("couchdbkit", "version.py"))
setup(
name = 'jsonobject-couchdbkit',
version = version.__version__,
description = 'Python couchdb kit',
long_description = open(
os.path.join(
os.path.dirname(__file__),
'README.rst'
), 'rt'
).read(),
author = 'Benoit Chesneau',
author_email = '[email protected]',
license = 'Apache License 2',
url = 'http://couchdbkit.org',
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Other Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Database',
'Topic :: Utilities',
'Topic :: Software Development :: Libraries :: Python Modules',
],
packages = find_packages(exclude=['tests']),
zip_safe = False,
install_requires = [
'jsonobject>=0.9.8',
'cloudant~=2.7',
'six',
],
provides=['couchdbkit'],
obsoletes=['couchdbkit'],
entry_points="""
[couchdbkit.consumers]
sync=couchdbkit.consumer.sync:SyncConsumer
eventlet=couchdbkit.consumer.ceventlet:EventletConsumer
gevent=couchdbkit.consumer.cgevent:GeventConsumer
""",
test_suite='nose.collector',
)