-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
124 lines (103 loc) · 3.48 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
# -*- coding: utf-8 -*-
import os
import re
import sysconfig
from collections import defaultdict
from Cython.Build import cythonize
from Cython.Compiler.Version import version as cython_version
from packaging.version import Version
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()
if sysconfig.get_config_var("Py_GIL_DISABLED"):
print("build nogil")
defined_macros = [
("Py_GIL_DISABLED", "1"),
]
# ("CYTHON_METH_FASTCALL", "1"), ("CYTHON_VECTORCALL", 1)]
else:
defined_macros = []
extensions = [
Extension(
"pysproto._sproto",
["pysproto/_sproto.pyx", f"sproto/sproto.c"],
include_dirs=[f"./sproto"],
library_dirs=[f"./sproto"],
define_macros=defined_macros,
),
]
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__)), "pysproto", "__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*"))
compiler_directives = {
"cdivision": True,
"embedsignature": True,
"boundscheck": False,
"wraparound": False,
}
if Version(cython_version) >= Version("3.1.0a0"):
compiler_directives["freethreading_compatible"] = True
def main():
version: str = get_version()
dis = get_dis()
setup(
name="sproto",
version=version,
url="https://github.com/synodriver/sproto",
packages=packages,
keywords=["sproto"],
description="sproto encode and decode",
long_description_content_type="text/markdown",
long_description=dis,
author="synodriver",
author_email="diguohuangjiajinweijun@gmail.com",
python_requires=">=3.6",
setup_requires=["Cython>=3.0.9"],
install_requires=["pypeg2"],
license="BSD",
classifiers=[
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
"License :: OSI Approved :: BSD License",
"Programming Language :: C",
"Programming Language :: Cython",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
],
include_package_data=True,
zip_safe=False,
cmdclass={"build_ext": build_ext_compiler_check},
ext_modules=cythonize(
extensions,
compiler_directives=compiler_directives,
),
)
if __name__ == "__main__":
main()