-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
176 lines (156 loc) · 8.13 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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
import sys
from typing import List
from setuptools import setup
import orcsome3.version
def generate_stubs() -> None:
"""
This function re-generate the stubs for orcsome3, only meant to be used for development
"""
try:
from pathlib import Path
def rmdir(directory: Path) -> None:
"""Delete all items from a directory"""
directory = Path(directory)
for item in directory.iterdir():
if item.is_dir():
rmdir(directory=item)
else:
item.unlink()
directory.rmdir()
def generate_files() -> Path:
import mypy.stubgen as stubgen
def initialize_modules(directory: Path) -> None:
# Initializes orcsome-stubs : __init__.py
directory.mkdir(parents=True, exist_ok=True)
directory.joinpath("__init__.py").touch(exist_ok=True)
# Initializes orcsome-stubs.orcsome : __init__.py
inner_directory = directory.joinpath("orcsome")
inner_directory.mkdir(parents=True, exist_ok=True)
inner_directory.joinpath("__init__.py").touch(exist_ok=True)
output_dir = Path(__file__).parent.joinpath("orcsome3-stubs")
if output_dir.is_dir():
rmdir(directory=output_dir)
initialize_modules(directory=output_dir)
args = ["--verbose", "--output", str(output_dir), str(Path(__file__).parent.joinpath("orcsome3"))]
sys.argv.extend(args)
# This will run "stubgen --verbose --output ./orcsome3-stubs ./orcsome3"
stubgen.main()
# returns the full path of ./orcsome3-stubs
return output_dir
def copy_files(dir: Path) -> Path:
"""
This function will re-order the files created by function `generate_files`
"""
import shutil
destiny: Path = dir.joinpath("orcsome") # ./orcsome3-stubs/orcsome
# Copy the file ./orcsome3-stubs/orcsome3/version.pyi to ./orcsome3-stubs/version.pyi
shutil.copy(src=dir.joinpath("orcsome3", "version.pyi"), dst=dir.joinpath("version.pyi"))
for file_ in dir.joinpath("orcsome3", "orcsome").iterdir():
# Copy every single file from ./orcsome3-stubs/orcsome3/orcsome to ./orcsome3-stubs/orcsome
shutil.copy(src=file_, dst=destiny.joinpath(file_.name))
rmdir(directory=dir.joinpath("orcsome3")) # remove recursively ./orcsome3-stubs/orcsome3
return destiny
def complete_stubs(dir: Path) -> None:
"""
This function will edit every .pyi file and replace the type Incomplete
for the type Any, also, it will put the decorator @cached_property to the
necessary methods accordingly to source
"""
files_to_edit: List[Path] = []
for file_ in dir.iterdir():
if file_.name.endswith(".pyi"):
with file_.open(mode="r") as content:
lines = content.readlines()
for line in lines:
if (
"from _typeshed import Incomplete" in line
or "from functools import cached_property" in line
):
files_to_edit.append(file_)
break
source_files = Path(__file__).parent.joinpath("orcsome3", "orcsome")
for file_ in files_to_edit:
src: Path = source_files.joinpath(file_.name.replace(".pyi", ".py"))
src_content: List[str] = []
new_content: List[str] = []
typing_import_src: str = ""
with src.open(mode="r") as src_:
src_content = src_.readlines()
for line in src_content:
if "from typing import" in line:
typing_import_src = "from typing import " + ", ".join(
[x for x in line.replace("from typing import ", "").split(sep=", ") if x[0].isupper()]
)
break
with file_.open(mode="r") as f_:
new_content = [line for line in f_.readlines() if "from _typeshed import Incomplete" not in line]
fix_decorator: bool = False
list_variables_cached: List[str] = []
for index, line in enumerate(iterable=new_content):
line_clean: str = line.translate(str.maketrans("", "", " \n\t\r"))
if "from typing import" in line:
new_content[index] = f"{typing_import_src}\n"
if ":Incomplete" in line_clean:
nombre_variable: str = line_clean.split(sep=":")[0]
line_fixed: bool = False
for src_line in src_content:
if f"self.{nombre_variable}:" in src_line:
variable_definition: List[str] = src_line.strip().lstrip().split(sep=":")
if not len(variable_definition) >= 2:
continue
if variable_definition[1].strip():
new_content[index] = line.replace(
"Incomplete", variable_definition[1].split("=")[0].strip()
)
line_fixed = True
break
if not line_fixed:
new_content[index] = line.replace("Incomplete", "Any")
if "from functools import cached_property" in line:
fix_decorator = True
for index, src_line in enumerate(iterable=src_content):
if "@cached_property" in src_line:
list_variables_cached.append(src_content[index + 1])
if fix_decorator and line.replace(" ...", "") in list_variables_cached:
new_content[index] = f" @cached_property\n{line}"
with file_.open(mode="w") as f_:
f_.writelines(new_content)
output_dir: Path = generate_files() # ./orcsome3-stubs
stub_dir: Path = copy_files(dir=output_dir)
complete_stubs(dir=stub_dir)
except ModuleNotFoundError as e:
print(f"EXCEPTION: {e}")
if "--generate-stubs" in sys.argv:
sys.argv.remove("--generate-stubs")
generate_stubs()
exit()
setup(
name="orcsome3",
version=orcsome3.version.VERSION,
author="Ahsan Pérez",
author_email="[email protected]",
description="Scripting extension for NETWM compliant window managers",
long_description=open(file="README.rst").read(),
long_description_content_type="text/x-rst",
zip_safe=False,
packages=["orcsome3", "orcsome3.orcsome", "orcsome3-stubs", "orcsome3-stubs.orcsome", "orcsome3.bin"],
package_data={"orcsome3-stubs": ["*.pyi", "**/*.pyi"], "orcsome3-stubs.orcsome": ["*.pyi", "**/*.pyi"]},
include_package_data=True,
cffi_modules=["orcsome3/orcsome/ev_build.py:ffibuilder", "orcsome3/orcsome/xlib_build.py:ffibuilder"],
setup_requires=["cffi>=1.0.0"],
install_requires=["cffi>=1.0.0"],
extras_require={"dev": ["mypy", "mypy-extensions", "typing_extensions"]},
scripts=["orcsome3/bin/orcsome3"],
url="https://github.com/ahsand97/orcsome3",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Development Status :: 4 - Beta",
"Environment :: X11 Applications",
"Topic :: Desktop Environment :: Window Managers",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Natural Language :: English",
],
python_requires=">=3.8",
)