-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (34 loc) · 877 Bytes
/
pyproject.toml
File metadata and controls
43 lines (34 loc) · 877 Bytes
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "athena-ge"
version = "2.0.0"
authors = [
{ name="Scott Dudek", email="Scott.Dudek@pennmedicine.upenn.edu" },
]
description = "Python implementation of ATHENA grammatical evolution"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"deap",
"scikit-learn",
"netgraph",
"networkx",
"pandas"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GPL-3.0 license",
"Operating System :: OS Independent",
]
[project.optional-dependencies]
parallel = [
"mpi4py",
]
[project.scripts]
athena = "athenage.athena:main"
"athena.py" = "athenage.athena:main"
[project.urls]
Homepage = "https://github.com/RitchieLab/athena-python"
Issues = "https://github.com/RitchieLab/athena-python/issues"