forked from coleifer/peewee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
62 lines (55 loc) · 1.75 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
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 = {}
try:
from Cython.Distutils import build_ext
from Cython import __version__ as cython_version
if StrictVersion(cython_version) < StrictVersion('0.22.1'):
warnings.warn('Your Cython appears to be an older version. You may '
'need to upgrade Cython in order to build the peewee '
'C extensions.')
except ImportError:
cython_installed = False
else:
cython_installed = True
speedups_ext_module = Extension(
'playhouse._speedups',
['playhouse/speedups.pyx'])
sqlite_ext_module = Extension(
'playhouse._sqlite_ext',
['playhouse/_sqlite_ext.pyx'])
ext_modules = []
if cython_installed:
ext_modules.extend([speedups_ext_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='[email protected]',
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
)