-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
27 lines (27 loc) · 929 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
# chardet's setup.py
from distutils.core import setup
setup(
name = "pymembase",
packages = ["pymembase"],
version = "0.0.1",
description = "Membase Python SDK",
author = "Couchbase Inc",
author_email = "info@couchbae.com",
url = "http://couchbase.com/",
download_url = "http://.../pysdk.tar.gz",
keywords = ["encoding", "i18n", "xml"],
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
],
long_description = """\
Membase Python Library
his version requires Python 2.6 or later
"""
)