Skip to content

Commit e938984

Browse files
committed
.
1 parent e2920ac commit e938984

File tree

6 files changed

+36
-35
lines changed

6 files changed

+36
-35
lines changed

.github/FUNDING.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
github: frankie567
1+
github: AppSolves

.github/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ updates:
77
time: "04:00"
88
open-pull-requests-limit: 10
99
reviewers:
10-
- frankie567
10+
- AppSolves

.vscode/settings.json

Lines changed: 23 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,25 @@
11
{
2-
"python.analysis.typeCheckingMode": "basic",
3-
"python.analysis.autoImportCompletions": true,
4-
"python.terminal.activateEnvironment": true,
5-
"python.terminal.activateEnvInCurrentTerminal": true,
6-
"python.testing.unittestEnabled": false,
7-
"python.testing.pytestEnabled": true,
8-
"editor.rulers": [88],
9-
"python.defaultInterpreterPath": "${workspaceFolder}/.hatch/fastapi-users-db-sqlalchemy/bin/python",
10-
"python.testing.pytestPath": "${workspaceFolder}/.hatch/fastapi-users-db-sqlalchemy/bin/pytest",
11-
"python.testing.cwd": "${workspaceFolder}",
12-
"python.testing.pytestArgs": ["--no-cov"],
13-
"[python]": {
14-
"editor.formatOnSave": true,
15-
"editor.codeActionsOnSave": {
16-
"source.fixAll": "explicit",
17-
"source.organizeImports": "explicit"
18-
},
19-
"editor.defaultFormatter": "charliermarsh.ruff"
20-
}
2+
"python.analysis.typeCheckingMode": "basic",
3+
"python.analysis.autoImportCompletions": true,
4+
"python.terminal.activateEnvironment": true,
5+
"python.terminal.activateEnvInCurrentTerminal": true,
6+
"python.testing.unittestEnabled": false,
7+
"python.testing.pytestEnabled": true,
8+
"editor.rulers": [
9+
88
10+
],
11+
"python.defaultInterpreterPath": "${workspaceFolder}/.hatch/fastapi-users-db-dynamodb/bin/python",
12+
"python.testing.pytestPath": "${workspaceFolder}/.hatch/fastapi-users-db-dynamodb/bin/pytest",
13+
"python.testing.cwd": "${workspaceFolder}",
14+
"python.testing.pytestArgs": [
15+
"--no-cov"
16+
],
17+
"[python]": {
18+
"editor.formatOnSave": true,
19+
"editor.codeActionsOnSave": {
20+
"source.fixAll": "explicit",
21+
"source.organizeImports": "explicit"
22+
},
23+
"editor.defaultFormatter": "charliermarsh.ruff"
2124
}
25+
}

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
isort:
2-
isort ./fastapi_users_db_sqlalchemy ./tests
2+
isort ./fastapi_users_db_dynamodb ./tests
33

44
format: isort
55
black .
66

77
test:
8-
pytest --cov=fastapi_users_db_sqlalchemy/ --cov-report=term-missing --cov-fail-under=100
8+
pytest --cov=fastapi_users_db_dynamodb/ --cov-report=term-missing --cov-fail-under=100
99

1010
bumpversion-major:
1111
bumpversion major

README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@
1212
[![codecov](https://codecov.io/gh/fastapi-users/fastapi-users-db-dynamodb/branch/master/graph/badge.svg)](https://codecov.io/gh/fastapi-users/fastapi-users-db-dynamodb)
1313
[![PyPI version](https://badge.fury.io/py/fastapi-users-db-dynamodb.svg)](https://badge.fury.io/py/fastapi-users-db-dynamodb)
1414
[![Downloads](https://pepy.tech/badge/fastapi-users-db-dynamodb)](https://pepy.tech/project/fastapi-users-db-dynamodb)
15-
<p align="center">
16-
<a href="https://github.com/sponsors/frankie567"><img src="https://md-buttons.francoisvoron.com/button.svg?text=Buy%20me%20a%20coffee%20%E2%98%95%EF%B8%8F&bg=ef4444&w=200&h=50"></a>
17-
</p>
1815

1916
---
2017

pyproject.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ allow-direct-references = true
1919
[tool.hatch.version]
2020
source = "regex_commit"
2121
commit_extra_args = ["-e"]
22-
path = "fastapi_users_db_sqlalchemy/__init__.py"
22+
path = "fastapi_users_db_dynamodb/__init__.py"
2323

2424
[tool.hatch.envs.default]
2525
installer = "uv"
@@ -41,17 +41,17 @@ dependencies = [
4141
]
4242

4343
[tool.hatch.envs.default.scripts]
44-
test = "pytest --cov=fastapi_users_db_sqlalchemy/ --cov-report=term-missing --cov-fail-under=100"
45-
test-cov-xml = "pytest --cov=fastapi_users_db_sqlalchemy/ --cov-report=xml --cov-fail-under=100"
44+
test = "pytest --cov=fastapi_users_db_dynamodb/ --cov-report=term-missing --cov-fail-under=100"
45+
test-cov-xml = "pytest --cov=fastapi_users_db_dynamodb/ --cov-report=xml --cov-fail-under=100"
4646
lint = [
4747
"ruff format . ",
4848
"ruff check --fix .",
49-
"mypy fastapi_users_db_sqlalchemy/",
49+
"mypy fastapi_users_db_dynamodb/",
5050
]
5151
lint-check = [
5252
"ruff format --check .",
5353
"ruff check .",
54-
"mypy fastapi_users_db_sqlalchemy/",
54+
"mypy fastapi_users_db_dynamodb/",
5555
]
5656

5757
[tool.hatch.build.targets.sdist]
@@ -62,11 +62,11 @@ requires = ["hatchling", "hatch-regex-commit"]
6262
build-backend = "hatchling.build"
6363

6464
[project]
65-
name = "fastapi-users-db-sqlalchemy"
65+
name = "fastapi-users-db-dynamodb"
6666
authors = [
67-
{ name = "François Voron", email = "fvoron@gmail.com" },
67+
{ name = "Kaan Gönüldinc", email = "contact@appsolves.dev" },
6868
]
69-
description = "FastAPI Users database adapter for SQLAlchemy"
69+
description = "FastAPI Users database adapter for AWS DynamoDB"
7070
readme = "README.md"
7171
dynamic = ["version"]
7272
classifiers = [
@@ -91,4 +91,4 @@ dependencies = [
9191

9292
[project.urls]
9393
Documentation = "https://fastapi-users.github.io/fastapi-users"
94-
Source = "https://github.com/fastapi-users/fastapi-users-db-sqlalchemy"
94+
Source = "https://github.com/fastapi-users/fastapi-users-db-dynamodb"

0 commit comments

Comments
 (0)