-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
135 lines (112 loc) · 3.7 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
# -*- coding: utf-8 -*-
import glob
import os
import re
import sys
from collections import defaultdict
try:
from Cython.Build import cythonize
except ImportError:
Cython = None
from setuptools import Extension, find_packages, setup
from setuptools.command.build_ext import build_ext
BUILD_ARGS = defaultdict(lambda: ["-O3", "-g0"])
for compiler, args in [
("msvc", ["/EHsc", "/DHUNSPELL_STATIC", "/Oi", "/O2", "/Ot"]),
("gcc", ["-O3", "-g0"]),
]:
BUILD_ARGS[compiler] = args
class build_ext_compiler_check(build_ext):
def build_extensions(self):
compiler = self.compiler.compiler_type
args = BUILD_ARGS[compiler]
for ext in self.extensions:
ext.extra_compile_args = args
super().build_extensions()
c_sources = ["wyhash/backends/cython/_wyhash.pyx"]
extensions = [
Extension(
"wyhash.backends.cython._wyhash",
c_sources,
include_dirs=["./dep"],
),
]
cffi_modules = ["wyhash/backends/cffi/build.py:ffibuilder"]
def get_dis():
with open("README.markdown", "r", encoding="utf-8") as f:
return f.read()
def get_version() -> str:
path = os.path.join(
os.path.abspath(os.path.dirname(__file__)), "wyhash", "__init__.py"
)
with open(path, "r", encoding="utf-8") as f:
data = f.read()
result = re.findall(r"(?<=__version__ = \")\S+(?=\")", data)
return result[0]
packages = find_packages(exclude=("test", "tests.*", "test*"))
def has_option(name: str) -> bool:
if name in sys.argv[1:]:
sys.argv.remove(name)
return True
return False
setup_requires = []
install_requires = []
setup_kw = {}
if has_option("--use-cython"):
print("building cython")
setup_requires.append("cython")
setup_kw["ext_modules"] = cythonize(
extensions,
compiler_directives={
"cdivision": True,
"embedsignature": True,
"boundscheck": False,
"wraparound": False,
},
)
if has_option("--use-cffi"):
print("building cffi")
setup_requires.append("cffi>=1.0.0")
install_requires.append("cffi>=1.0.0")
setup_kw["cffi_modules"] = cffi_modules
def main():
version: str = get_version()
dis = get_dis()
setup(
name="wyhash",
version=version,
url="https://github.com/synodriver/python-wyhash",
packages=packages,
keywords=["hash"],
description="python binding for wyhash",
long_description_content_type="text/markdown",
long_description=dis,
author="synodriver",
author_email="diguohuangjiajinweijun@gmail.com",
python_requires=">=3.6",
setup_requires=setup_requires,
install_requires=install_requires,
license="BSD",
classifiers=[
"Development Status :: 3 - Alpha",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Programming Language :: C",
"Programming Language :: Cython",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
],
include_package_data=True,
zip_safe=False,
cmdclass={"build_ext": build_ext_compiler_check},
**setup_kw
)
if __name__ == "__main__":
main()