forked from coleifer/peewee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
76 lines (69 loc) · 2.32 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
71
72
73
74
75
76
import os
import sys
import warnings
from distutils.core import setup
from distutils.extension import Extension
from distutils.version import StrictVersion
f = open(os.path.join(os.path.dirname(__file__), 'README.rst'))
readme = f.read()
f.close()
setup_kwargs = {}
cython_min_version = '0.22.1'
try:
from Cython.Distutils import build_ext
from Cython import __version__ as cython_version
except ImportError:
cython_installed = False
warnings.warn('Cython C extensions for peewee will NOT be built, because '
'Cython does not seem to be installed. To enable Cython C '
'extensions, install Cython >=' + cython_min_version + '.')
else:
if StrictVersion(cython_version) < StrictVersion(cython_min_version):
cython_installed = False
warnings.warn('Cython C extensions for peewee will NOT be built, '
'because the installed Cython version '
'(' + cython_version + ') is too old. To enable Cython '
'C extensions, install Cython >=' + cython_min_version +
'.')
else:
cython_installed = True
speedups_ext_module = Extension(
'playhouse._speedups',
['playhouse/_speedups.pyx'])
sqlite_udf_module = Extension(
'playhouse._sqlite_udf',
['playhouse/_sqlite_udf.pyx'])
sqlite_ext_module = Extension(
'playhouse._sqlite_ext',
['playhouse/_sqlite_ext.pyx'])
ext_modules = []
if cython_installed:
ext_modules.extend([
speedups_ext_module,
sqlite_udf_module,
sqlite_ext_module])
if ext_modules:
setup_kwargs.update(
cmdclass={'build_ext': build_ext},
ext_modules=ext_modules)
setup(
name='peewee',
version=__import__('peewee').__version__,
description='a little orm',
long_description=readme,
author='Charles Leifer',
author_email='coleifer@gmail.com',
url='http://github.com/coleifer/peewee/',
packages=['playhouse'],
py_modules=['peewee', 'pwiz'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
],
scripts = ['pwiz.py'],
**setup_kwargs
)