airflow-file-auth-manager 0.1.0__tar.gz → 0.1.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (16) hide show
  1. {airflow_file_auth_manager-0.1.0 → airflow_file_auth_manager-0.1.1}/PKG-INFO +1 -2
  2. {airflow_file_auth_manager-0.1.0 → airflow_file_auth_manager-0.1.1}/pyproject.toml +1 -4
  3. {airflow_file_auth_manager-0.1.0 → airflow_file_auth_manager-0.1.1}/.gitignore +0 -0
  4. {airflow_file_auth_manager-0.1.0 → airflow_file_auth_manager-0.1.1}/LICENSE +0 -0
  5. {airflow_file_auth_manager-0.1.0 → airflow_file_auth_manager-0.1.1}/README.md +0 -0
  6. {airflow_file_auth_manager-0.1.0 → airflow_file_auth_manager-0.1.1}/examples/users.yaml +0 -0
  7. {airflow_file_auth_manager-0.1.0 → airflow_file_auth_manager-0.1.1}/src/airflow_file_auth_manager/__init__.py +0 -0
  8. {airflow_file_auth_manager-0.1.0 → airflow_file_auth_manager-0.1.1}/src/airflow_file_auth_manager/cli.py +0 -0
  9. {airflow_file_auth_manager-0.1.0 → airflow_file_auth_manager-0.1.1}/src/airflow_file_auth_manager/endpoints.py +0 -0
  10. {airflow_file_auth_manager-0.1.0 → airflow_file_auth_manager-0.1.1}/src/airflow_file_auth_manager/file_auth_manager.py +0 -0
  11. {airflow_file_auth_manager-0.1.0 → airflow_file_auth_manager-0.1.1}/src/airflow_file_auth_manager/password.py +0 -0
  12. {airflow_file_auth_manager-0.1.0 → airflow_file_auth_manager-0.1.1}/src/airflow_file_auth_manager/policy.py +0 -0
  13. {airflow_file_auth_manager-0.1.0 → airflow_file_auth_manager-0.1.1}/src/airflow_file_auth_manager/static/styles.css +0 -0
  14. {airflow_file_auth_manager-0.1.0 → airflow_file_auth_manager-0.1.1}/src/airflow_file_auth_manager/templates/login.html +0 -0
  15. {airflow_file_auth_manager-0.1.0 → airflow_file_auth_manager-0.1.1}/src/airflow_file_auth_manager/user.py +0 -0
  16. {airflow_file_auth_manager-0.1.0 → airflow_file_auth_manager-0.1.1}/src/airflow_file_auth_manager/user_store.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: airflow-file-auth-manager
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: YAML file-based lightweight Auth Manager for Apache Airflow 3.x
5
5
  Project-URL: Homepage, https://github.com/yeonguk/airflow-file-auth-manager
6
6
  Project-URL: Repository, https://github.com/yeonguk/airflow-file-auth-manager
@@ -20,7 +20,6 @@ Requires-Python: >=3.11
20
20
  Requires-Dist: bcrypt>=4.0.0
21
21
  Requires-Dist: pyyaml>=6.0
22
22
  Provides-Extra: dev
23
- Requires-Dist: apache-airflow>=3.0.0; extra == 'dev'
24
23
  Requires-Dist: pytest-cov>=4.0.0; extra == 'dev'
25
24
  Requires-Dist: pytest>=8.0.0; extra == 'dev'
26
25
  Description-Content-Type: text/markdown
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "airflow-file-auth-manager"
7
- version = "0.1.0"
7
+ version = "0.1.1"
8
8
  description = "YAML file-based lightweight Auth Manager for Apache Airflow 3.x"
9
9
  readme = "README.md"
10
10
  license = "Apache-2.0"
@@ -31,7 +31,6 @@ dependencies = [
31
31
 
32
32
  [project.optional-dependencies]
33
33
  dev = [
34
- "apache-airflow>=3.0.0",
35
34
  "pytest>=8.0.0",
36
35
  "pytest-cov>=4.0.0",
37
36
  ]
@@ -75,9 +74,7 @@ known-first-party = ["airflow_file_auth_manager"]
75
74
 
76
75
  [dependency-groups]
77
76
  dev = [
78
- "apache-airflow>=3.0.0",
79
77
  "pytest>=8.0.0",
80
78
  "pytest-cov>=4.0.0",
81
79
  "ruff>=0.8.0",
82
- "starlette>=0.49.1", # Security fix for CVE in FileResponse
83
80
  ]