diff --git a/pyproject.toml b/pyproject.toml index c84ffa5..be62d59 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,12 +6,10 @@ build-backend = "setuptools.build_meta" name = "arcaea-offline" version = "0.1.0" authors = [{ name = "283375", email = "log_283375@163.com" }] -description = "Calculate your B30 & R10 locally." +description = "Manage your local Arcaea score database." readme = "README.md" requires-python = ">=3.8" -dependencies = [ - "thefuzz[speedup] == 0.19.0" -] +dependencies = ["SQLAlchemy==2.0.20", "SQLAlchemy-Utils==0.41.1"] classifiers = [ "Development Status :: 3 - Alpha", "Programming Language :: Python :: 3", diff --git a/requirements.dev.txt b/requirements.dev.txt new file mode 100644 index 0000000..892d4ef --- /dev/null +++ b/requirements.dev.txt @@ -0,0 +1,3 @@ +black==23.3.0 +isort==5.12.0 +pre-commit==3.3.1 diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..eaef1dc --- /dev/null +++ b/requirements.txt @@ -0,0 +1,2 @@ +SQLAlchemy==2.0.20 +SQLAlchemy-Utils==0.41.1