From 4e89fc56e801dc3b719bf830d5e287977aaa12a1 Mon Sep 17 00:00:00 2001 From: Kartik Singhal Date: Thu, 28 Sep 2023 14:17:47 -0500 Subject: [PATCH] Add MANIFEST, move pytket to core dependency --- MANIFEST.in | 9 +++++++++ pyproject.toml | 4 ++-- 2 files changed, 11 insertions(+), 2 deletions(-) create mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..337f1d5 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,9 @@ +include *.toml +include *.txt +include Makefile +include mypy.ini +recursive-include docs *.rst +recursive-include tests *.qasm +exclude Dockerfile +exclude .docker* +exclude .pre-commit* diff --git a/pyproject.toml b/pyproject.toml index e8f598d..ca5665b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,10 +12,10 @@ requires-python = ">=3.10" license = {file = "LICENSE"} authors = [{name = "Quantinuum"}] -dependencies = [] +dependencies = ["pytket"] [project.optional-dependencies] -tests = ["pytest", "pytket"] +tests = ["pytest"] [project.urls] Repository = "https://github.com/CQCL/pytket-phir.git"