Home
last modified time | relevance | path

Searched refs:init_py (Results 1 – 25 of 102) sorted by relevance

12345

/dports/textproc/py-googletrans/googletrans-3.0.0/
H A Dsetup.py19 init_py = get_file(os.path.dirname(__file__), 'googletrans', '__init__.py')
21 version, = re.findall(pattern, init_py)
26 init_py = get_file(os.path.dirname(__file__), 'googletrans', '__init__.py')
28 description, = re.findall(pattern, init_py, re.DOTALL)
/dports/devel/py-setuptools/setuptools-57.0.0/setuptools/command/
H A Dbuild_py.py164 init_py = orig.build_py.check_package(self, package, package_dir)
165 self.packages_checked[package] = init_py
167 if not init_py or not self.distribution.namespace_packages:
168 return init_py
174 return init_py
176 with io.open(init_py, 'rb') as f:
185 return init_py
/dports/math/py-fvcore/fvcore-0.1.5.post20210924/
H A Dsetup.py14 init_py = open(init_py_path, "r").readlines()
15 version_line = [l.strip() for l in init_py if l.startswith("__version__")][0]
29 new_init_py = [l for l in init_py if not l.startswith("__version__")]
/dports/net/google-cloud-sdk/google-cloud-sdk/lib/third_party/setuptools/command/
H A Dbuild_py.py163 init_py = orig.build_py.check_package(self, package, package_dir)
164 self.packages_checked[package] = init_py
166 if not init_py or not self.distribution.namespace_packages:
167 return init_py
173 return init_py
175 with io.open(init_py, 'rb') as f:
184 return init_py
/dports/math/py-cypari2/cypari2-2.1.2/venv/lib/python3.7/site-packages/setuptools/command/
H A Dbuild_py.py163 init_py = orig.build_py.check_package(self, package, package_dir)
164 self.packages_checked[package] = init_py
166 if not init_py or not self.distribution.namespace_packages:
167 return init_py
173 return init_py
175 with io.open(init_py, 'rb') as f:
184 return init_py
/dports/www/firefox/firefox-99.0/third_party/python/setuptools/setuptools/command/
H A Dbuild_py.py163 init_py = orig.build_py.check_package(self, package, package_dir)
164 self.packages_checked[package] = init_py
166 if not init_py or not self.distribution.namespace_packages:
167 return init_py
173 return init_py
175 with io.open(init_py, 'rb') as f:
184 return init_py
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/catapult/third_party/google-endpoints/setuptools/command/
H A Dbuild_py.py163 init_py = orig.build_py.check_package(self, package, package_dir)
164 self.packages_checked[package] = init_py
166 if not init_py or not self.distribution.namespace_packages:
167 return init_py
173 return init_py
175 with io.open(init_py, 'rb') as f:
184 return init_py
/dports/lang/spidermonkey78/firefox-78.9.0/obj-x86_64-pc-linux-gnu/_virtualenvs/init/lib/python2.7/site-packages/setuptools/command/
H A Dbuild_py.py163 init_py = orig.build_py.check_package(self, package, package_dir)
164 self.packages_checked[package] = init_py
166 if not init_py or not self.distribution.namespace_packages:
167 return init_py
173 return init_py
175 with io.open(init_py, 'rb') as f:
184 return init_py
/dports/devel/py-setuptools44/setuptools-44.1.1/setuptools/command/
H A Dbuild_py.py163 init_py = orig.build_py.check_package(self, package, package_dir)
164 self.packages_checked[package] = init_py
166 if not init_py or not self.distribution.namespace_packages:
167 return init_py
173 return init_py
175 with io.open(init_py, 'rb') as f:
184 return init_py
/dports/databases/py-aioredis/aioredis-1.3.1/
H A Dsetup.py25 init_py = os.path.join(os.path.dirname(__file__),
27 with open(init_py) as f:
32 raise RuntimeError('Cannot find version in {}'.format(init_py))
/dports/math/py-pytorchvideo/pytorchvideo-0.1.3/
H A Dsetup.py13 init_py = open(init_py_path, "r").readlines()
15 lines.strip() for lines in init_py if lines.startswith("__version__")
30 new_init_py = [l for l in init_py if not l.startswith("__version__")]
/dports/finance/electrum/Electrum-4.1.5/packages/setuptools/command/
H A Dbuild_py.py169 init_py = orig.build_py.check_package(self, package, package_dir)
170 self.packages_checked[package] = init_py
172 if not init_py or not self.distribution.namespace_packages:
173 return init_py
179 return init_py
181 with io.open(init_py, 'rb') as f:
190 return init_py
/dports/lang/python-legacy/Python-2.7.18/Lib/distutils/command/
H A Dbuild_py.py200 init_py = os.path.join(package_dir, "__init__.py")
201 if os.path.isfile(init_py):
202 return init_py
205 "(or not a regular file)"), init_py)
269 init_py = self.check_package(package, package_dir)
271 if init_py:
272 modules.append((package, "__init__", init_py))
/dports/lang/python27/Python-2.7.18/Lib/distutils/command/
H A Dbuild_py.py200 init_py = os.path.join(package_dir, "__init__.py")
201 if os.path.isfile(init_py):
202 return init_py
205 "(or not a regular file)"), init_py)
269 init_py = self.check_package(package, package_dir)
271 if init_py:
272 modules.append((package, "__init__", init_py))
/dports/java/eclipse-pydev/eclipse-pydev-8.2.0/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/distutils/command/
H A Dbuild_py.py199 init_py = os.path.join(package_dir, "__init__.py")
200 if os.path.isfile(init_py):
201 return init_py
204 "(or not a regular file)"), init_py)
268 init_py = self.check_package(package, package_dir)
270 if init_py:
271 modules.append((package, "__init__", init_py))
/dports/sysutils/uefi-edk2-bhyve-csm/uefi-edk2-aa8d718/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/command/
H A Dbuild_py.py199 init_py = os.path.join(package_dir, "__init__.py")
200 if os.path.isfile(init_py):
201 return init_py
204 "(or not a regular file)"), init_py)
268 init_py = self.check_package(package, package_dir)
270 if init_py:
271 modules.append((package, "__init__", init_py))
/dports/devel/py-scikit-build/scikit-build-0.12.0/skbuild/command/
H A Dbuild_py.py81 init_py = self.check_package(package, package_dir)
83 if init_py:
84 modules.append((package, "__init__", init_py))
/dports/databases/py-sqlite3/Python-3.8.12/Lib/distutils/command/
H A Dbuild_py.py199 init_py = os.path.join(package_dir, "__init__.py")
200 if os.path.isfile(init_py):
201 return init_py
204 "(or not a regular file)"), init_py)
268 init_py = self.check_package(package, package_dir)
270 if init_py:
271 modules.append((package, "__init__", init_py))
/dports/databases/py-gdbm/Python-3.8.12/Lib/distutils/command/
H A Dbuild_py.py199 init_py = os.path.join(package_dir, "__init__.py")
200 if os.path.isfile(init_py):
201 return init_py
204 "(or not a regular file)"), init_py)
268 init_py = self.check_package(package, package_dir)
270 if init_py:
271 modules.append((package, "__init__", init_py))
/dports/finance/electrum/Electrum-4.1.5/packages/setuptools/_distutils/command/
H A Dbuild_py.py199 init_py = os.path.join(package_dir, "__init__.py")
200 if os.path.isfile(init_py):
201 return init_py
204 "(or not a regular file)"), init_py)
268 init_py = self.check_package(package, package_dir)
270 if init_py:
271 modules.append((package, "__init__", init_py))
/dports/lang/python37/Python-3.7.12/Lib/distutils/command/
H A Dbuild_py.py199 init_py = os.path.join(package_dir, "__init__.py")
200 if os.path.isfile(init_py):
201 return init_py
204 "(or not a regular file)"), init_py)
268 init_py = self.check_package(package, package_dir)
270 if init_py:
271 modules.append((package, "__init__", init_py))
/dports/lang/python38/Python-3.8.12/Lib/distutils/command/
H A Dbuild_py.py199 init_py = os.path.join(package_dir, "__init__.py")
200 if os.path.isfile(init_py):
201 return init_py
204 "(or not a regular file)"), init_py)
268 init_py = self.check_package(package, package_dir)
270 if init_py:
271 modules.append((package, "__init__", init_py))
/dports/lang/python311/Python-3.11.0a3/Lib/distutils/command/
H A Dbuild_py.py199 init_py = os.path.join(package_dir, "__init__.py")
200 if os.path.isfile(init_py):
201 return init_py
204 "(or not a regular file)"), init_py)
268 init_py = self.check_package(package, package_dir)
270 if init_py:
271 modules.append((package, "__init__", init_py))
/dports/lang/python-tools/Python-3.8.12/Lib/distutils/command/
H A Dbuild_py.py199 init_py = os.path.join(package_dir, "__init__.py")
200 if os.path.isfile(init_py):
201 return init_py
204 "(or not a regular file)"), init_py)
268 init_py = self.check_package(package, package_dir)
270 if init_py:
271 modules.append((package, "__init__", init_py))
/dports/lang/python39/Python-3.9.9/Lib/distutils/command/
H A Dbuild_py.py199 init_py = os.path.join(package_dir, "__init__.py")
200 if os.path.isfile(init_py):
201 return init_py
204 "(or not a regular file)"), init_py)
268 init_py = self.check_package(package, package_dir)
270 if init_py:
271 modules.append((package, "__init__", init_py))

12345