From 46dec26a58be7131c9d74ee061d56ec342654176 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9mie=20Gince?= <50332514+JeremieGince@users.noreply.github.com> Date: Wed, 13 Nov 2024 17:18:39 -0500 Subject: [PATCH 1/3] Update __init__.py --- src/torch_pfaffian/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/torch_pfaffian/__init__.py b/src/torch_pfaffian/__init__.py index b9205fe..1461dad 100644 --- a/src/torch_pfaffian/__init__.py +++ b/src/torch_pfaffian/__init__.py @@ -6,7 +6,7 @@ __email__ = "gincejeremie@gmail.com" __copyright__ = "Copyright 2024, Jérémie Gince" __license__ = "Apache 2.0" -__url__ = "https://github.com/MatchCake/torch_pfaffian" +__url__ = "https://github.com/MatchCake/TorchPfaffian" __version__ = "0.0.1-beta0" import warnings From 21c83ceaf4921248e6cd5016dfa35eb4d5cb84f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9mie=20Gince?= <50332514+JeremieGince@users.noreply.github.com> Date: Wed, 13 Nov 2024 17:18:42 -0500 Subject: [PATCH 2/3] Update setup.py --- setup.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index ce3f491..ee589ef 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ import setuptools setup( - name='MSim', + name='TorchPfaffian', long_description='file: README.md', long_description_content_type="text/markdown", package_dir={"": "src"}, @@ -20,9 +20,9 @@ "Operating System :: OS Independent", ], project_urls={ - 'Homepage': 'https://github.com/JeremieGince/', - 'Source': 'https://github.com/JeremieGince/', - 'Documentation': 'https://JeremieGince.github.io/', + 'Homepage': 'https://https://github.com/MatchCake/TorchPfaffian', + 'Source': 'https://https://github.com/MatchCake/TorchPfaffian', + 'Documentation': 'https://MatchCake.github.io/TorchPfaffian', }, ) From a83f6b385d5af037a8238296ebc75769efb75d9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9mie=20Gince?= <50332514+JeremieGince@users.noreply.github.com> Date: Wed, 13 Nov 2024 17:18:44 -0500 Subject: [PATCH 3/3] Update pyproject.toml --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 45d19dc..e37a340 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -43,7 +43,8 @@ requires-python = ">=3.8" dependencies = [ "numpy>=1.23.0", "setuptools>=57.0.0", - "torch" + "torch", + "numpy" ]