-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
147 lines (123 loc) · 3.99 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
136
137
138
139
140
141
142
143
144
145
146
147
# -*- coding: utf-8 -*-
import os
import re
import sys
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()
def has_option(name: str) -> bool:
if name in sys.argv[1:]:
sys.argv.remove(name)
return True
name = name.strip("-").upper()
if os.environ.get(name, None) is not None:
return True
return False
macro_base = []
if sys.byteorder != "little":
macro_base.append(("WORDS_BIGENDIAN", None))
if has_option("--TEA_NORAND"):
macro_base.append(("TEA_NORAND", None))
if (
sys.version_info > (3, 13, 0)
and hasattr(sys, "_is_gil_enabled")
and not sys._is_gil_enabled()
):
print("build nogil")
macro_base.append(
("Py_GIL_DISABLED", "1"),
)
compiler_directives = {
"cdivision": True,
"embedsignature": True,
"boundscheck": False,
"wraparound": False,
}
if Version(cython_version) >= Version("3.1.0a0"):
compiler_directives["freethreading_compatible"] = True
extensions = [
Extension(
"ftea._tea",
["ftea/_tea.pyx", "simple-crypto/tea.c"],
include_dirs=[f"./simple-crypto"],
library_dirs=[f"./simple-crypto"],
define_macros=macro_base,
),
Extension(
"ftea._xtea",
["ftea/_xtea.pyx", "xtea-c/xtea.c"],
include_dirs=[f"./xtea-c"],
library_dirs=[f"./xtea-c"],
define_macros=macro_base,
),
]
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__)), "ftea", "__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 main():
version: str = get_version()
dis = get_dis()
setup(
name="ftea",
version=version,
url="https://github.com/synodriver/ftea",
packages=packages,
keywords=["tea"],
description="tea encrypt and decrypt",
long_description_content_type="text/markdown",
long_description=dis,
author="synodriver",
author_email="[email protected]",
python_requires=">=3.6",
setup_requires=["Cython>=3.0.9"],
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()