-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (30 loc) · 834 Bytes
/
setup.py
File metadata and controls
35 lines (30 loc) · 834 Bytes
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
import os
import warnings
from setuptools import setup
from setuptools.extension import Extension
try:
from Cython.Build import cythonize
except ImportError:
cython_installed = False
warnings.warn('Cython not installed, using pre-generated C source file.')
else:
cython_installed = True
if cython_installed:
python_source = 'vedis.pyx'
else:
python_source = 'vedis.c'
cythonize = lambda obj: obj
library_source = 'src/vedis.c'
vedis_extension = Extension(
'vedis',
sources=[python_source, library_source])
setup(
name='vedis',
version='0.7.2',
description='Fast Python bindings for the Vedis embedded NoSQL database.',
author='Charles Leifer',
author_email='',
setup_requires=['cython'],
install_requires=['cython'],
ext_modules=cythonize([vedis_extension]),
)