aboutsummaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: 36fc07e6c437ee13f0dd19e912a6d4b88250df97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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"