Compare commits

..

1 Commits

Author SHA1 Message Date
4ab1f15e8d Initial ruff pass 2025-06-09 21:34:32 +02:00

View File

@ -171,8 +171,10 @@ def find_python_packages() -> list[str]:
for init_file in root_path.rglob('__init__.py'):
packages.add(str(init_file.parent).replace('/', '.'))
print(f'Found following packages: {packages}')
return sorted(packages)
with open(PACKAGE_NAME + '/_version.py') as f:
version = parse_version_file(f.read())