-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
45 lines (42 loc) · 1.51 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
from distutils.core import setup
def get_version():
return "1.0.0"
setup(
name="cbtestlib",
version=get_version(),
description="Couchbase test library",
long_description="Couchbase test library",
author="Couchbase Inc",
author_email="[email protected]",
install_requires=["paramiko",
"pymongo",],
packages=["cbtestlib",
"cbtestlib.builds",
"cbtestlib.cbkarma",
"cbtestlib.couchbase",
"cbtestlib.couchdb",
"cbtestlib.membase",
"cbtestlib.membase.api.httplib2",
"cbtestlib.membase.api",
"cbtestlib.membase.helper",
"cbtestlib.membase.performance",
"cbtestlib.memcached",
"cbtestlib.memcached.helper",
"cbtestlib.tasks",
"cbtestlib.remote",
"cbtestlib.perf_engines",
"cbtestlib.perf_engines.libobserve",
"cbtestlib.perf_engines.libstats",],
url="http://www.couchbase.com/",
keywords=["encoding", "i18n", "xml"],
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Development Status :: 5 - Production/Stable",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)