forked from alexandroskoliousis/polygraphs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (31 loc) · 788 Bytes
/
pyproject.toml
File metadata and controls
34 lines (31 loc) · 788 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "polygraphs"
version = "0.0.22-alpha"
authors = [
{name="Alexandros Koliousis", email="ak@akoliousis.com"},
{name="Amil Mohanan", email="amil@mohanan.net"}
]
license = {text = "MIT License"}
description = "Philosophical simulations on networks"
readme = "README.md"
keywords = ["philosophy", "epistemology", "simulation"]
requires-python = ">=3.8"
dependencies = [
"PyYaml",
"pandas",
"numpy",
"h5py",
"matplotlib",
"networkx",
"six",
"torch",
"dgl"
]
[project.urls]
Repository = "https://github.com/alexandroskoliousis/polygraphs"
Documentation = "https://akoliousis.com/polygraphs/"
[project.scripts]
polygraphs = "polygraphs.run:run"