-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
32 lines (29 loc) · 1.17 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
from setuptools import setup
import couchbase_ffi._cinit
setup_args = {
'ext_modules': [ couchbase_ffi._cinit.ffi.verifier.get_extension() ],
'zip_safe': False,
'author': "Mark Nunberg",
'author_email': "[email protected]",
'license': "Apache License 2.0",
'description': "Couchbase Client API using CFFI",
'keywords': ["PyPy", "nosql", "pycouchbase", "libcouchbase", "couchbase"],
'install_requires': ['cffi', 'couchbase'],
'tests_require': ['nose', 'testresources'],
'classifiers': [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: Implementation :: CPython"
],
'packages': ['couchbase_ffi'],
'package_data': {'couchbase_ffi':['_lcb.h']},
'name': 'couchbase_ffi',
'version': '0.2.0.0',
'url': 'https://github.com/couchbaselabs/couchbase-python-cffi'
}
setup(**setup_args)