From 4cfd796095cd7ebff1665635df2b4fddf8fcaef4 Mon Sep 17 00:00:00 2001 From: mathiasg Date: Fri, 2 Dec 2022 14:55:34 -0500 Subject: [PATCH] MAINT: Cleanup migration --- .gitignore | 3 +++ pyproject.toml | 12 ++++-------- 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/.gitignore b/.gitignore index d1eca4c..5e151f6 100644 --- a/.gitignore +++ b/.gitignore @@ -14,3 +14,6 @@ mounts/ # Ignore generated credentials from google-github-actions/auth gha-creds-*.json + +# Autogenerated by setuptools_scm +migas_server/_version.py \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 5a1fcd2..9603684 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,13 +3,12 @@ requires = ["flit_scm"] build-backend = "flit_scm:buildapi" [project] -name = "migas_server" +name = "migas-server" description = "Migas telemetry server" -description-file = "README.md" readme = "README.md" license = {file = "LICENSE"} maintainers = [ - {name = "Nipreps developers", email = "nipreps.org"} + {name = "Nipreps developers", email = "nipreps@gmail.com"}, ] classifiers = [ "Development Status :: 2 - Pre-Alpha", @@ -23,12 +22,12 @@ classifiers = [ requires-python = ">3.10" dependencies = [ "aiohttp", - "redis >=4.2.0" + "redis >=4.2.0", "asyncpg", "fastapi[all]", "packaging", "strawberry-graphql[fastapi]", - "sqlalchemy[async]" + "sqlalchemy[async]", ] dynamic = ["version"] @@ -53,9 +52,6 @@ test = [ [project.scripts] migas-server = "migas_server.cli:main" -[tool.flit.module] -name = "migas_server" - [tool.flit.sdist] exclude = [".gitignore"]