Compare commits

..

6 Commits

Author SHA1 Message Date
Simone Scarduzio 4a633802b7 Remove deprecated license classifier 2025-09-29 16:38:28 +02:00
Simone Scarduzio 9f839cc8b7 Fix license deprecation warning and setuptools-scm config 2025-09-29 16:36:40 +02:00
Simone Scarduzio 4852f373f1 idk 2025-09-29 16:21:56 +02:00
Simone Scarduzio a7ec85b064 style: Apply code formatting with ruff format
- Formatted core service implementation
- Formatted CLI main module
- Formatted test file with proper line breaks and indentation

All formatting, linting, and type checks now pass.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-29 16:15:49 +02:00
Simone Scarduzio 09a5899a56 Merge pull request #2 from beshu-tech/fix/intelligent-reference-cleanup
style: Fix linting issues in recursive delete test file
2025-09-29 16:10:58 +02:00
Simone Scarduzio e0b8bac859 ruff 2025-09-29 16:08:26 +02:00
2 changed files with 4 additions and 7 deletions
+1 -4
View File
@@ -13,7 +13,7 @@ maintainers = [
{name = "Beshu Tech Team", email = "info@beshu.tech"},
]
readme = "README.md"
license = {text = "MIT"}
license = "MIT"
requires-python = ">=3.11"
keywords = [
"s3",
@@ -35,7 +35,6 @@ classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
@@ -115,8 +114,6 @@ dev-dependencies = [
[tool.setuptools_scm]
# Automatically determine version from git tags
write_to = "src/deltaglider/_version.py"
version_scheme = "release-branch-semver"
local_scheme = "no-local-version"
[tool.ruff]
target-version = "py311"
+3 -3
View File
@@ -28,7 +28,7 @@ version_tuple: VERSION_TUPLE
commit_id: COMMIT_ID
__commit_id__: COMMIT_ID
__version__ = version = '0.2.0.dev0'
__version_tuple__ = version_tuple = (0, 2, 0, 'dev0')
__version__ = version = '0.2.0.dev10'
__version_tuple__ = version_tuple = (0, 2, 0, 'dev10')
__commit_id__ = commit_id = 'g432ddd89c'
__commit_id__ = commit_id = 'ga7ec85b06'