diff options
author | Arun Isaac | 2025-06-26 21:55:01 +0100 |
---|---|---|
committer | Arun Isaac | 2025-06-27 10:31:58 +0100 |
commit | 9e983271ffac3c120e0c852bb28a2cd25c8f97db (patch) | |
tree | 6b78d020cb4ee61ec86eabcff4a10fb4db209e4b /pyproject.toml | |
download | pyhegp-9e983271ffac3c120e0c852bb28a2cd25c8f97db.tar.gz pyhegp-9e983271ffac3c120e0c852bb28a2cd25c8f97db.tar.lz pyhegp-9e983271ffac3c120e0c852bb28a2cd25c8f97db.zip |
Initial commit
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..36fc07e --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,25 @@ +[build-system] +requires = ["flit_core >=3.11,<4"] +build-backend = "flit_core.buildapi" + +[project] +name = "pyhegp" +version = "0.1.0" +authors = [ + { name="Arun Isaac", email="arunisaac@systemreboot.net" } +] +description = "Homomorphic encryption of genotypes and phenotypes" +readme = "README.md" +classifiers = [ + "Programming Language :: Python :: 3", + "Operating System :: OS Independent" +] +license = {file = "COPYING"} +dependencies = [ + "click", + "numpy", + "scipy" +] + +[project.scripts] +pyhegp = "pyhegp:main" |