forked from Thriftpy/thriftpy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
72 lines (63 loc) · 2.03 KB
/
Copy pathsetup.py
File metadata and controls
72 lines (63 loc) · 2.03 KB
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from setuptools.extension import Extension
install_requires = [
"pyparsing>=2.0.2,<2.1.0",
]
tornado_requires = [
"tornado>=4.0,<5.0",
"toro"
]
dev_requires = [
"cython>=0.20.2",
"flake8>=2.2.2",
"pytest>=2.6.0",
"sphinx-rtd-theme>=0.1.6",
"sphinx>=1.2.2",
] + tornado_requires
try:
from Cython.Distutils import build_ext
cython = True
except ImportError:
cython = False
cmdclass = {}
ext_modules = []
if cython:
ext_modules.append(Extension("thriftpy.protocol.cybin",
["thriftpy/protocol/cybin/cybin.pyx"]))
cmdclass["build_ext"] = build_ext
else:
ext_modules.append(Extension("thriftpy.protocol.cybin",
["thriftpy/protocol/cybin/cybin.c"]))
setup(name="thriftpy",
version=__import__('thriftpy').__version__,
description="Pure python implemention of Apache Thrift.",
keywords="thrift python thriftpy",
author="Lx Yu",
author_email="i@lxyu.net",
packages=find_packages(exclude=['benchmark', 'docs', 'tests']),
entry_points={},
url="https://thriftpy.readthedocs.org/",
license="MIT",
zip_safe=False,
long_description=open("README.rst").read(),
install_requires=install_requires,
tests_require=tornado_requires,
extras_require={
"dev": dev_requires,
"tornado": tornado_requires
},
cmdclass=cmdclass,
ext_modules=ext_modules,
classifiers=[
"Topic :: Software Development",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
])