-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (41 loc) · 1.09 KB
/
pyproject.toml
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
43
44
45
46
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "simcat"
version = "0.3.2"
authors = [
{ name="Roberta Rocca", email="rbrrcc@gmail.com"},
]
description = "A Python package to simulate multi-agent cognitive association tasks using embedding spaces"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
keywords = [
"cognition",
"social interaction",
"agent-based simulations",
"foraging",
"embedding models",
]
dependencies = [
"numpy==1.23.0",
"pandas==1.4.3",
"scikit-learn==1.2.1",
"scipy==1.8.1",
"umap-learn==0.5.5",
"seaborn==0.11.2",
"matplotlib==3.5.2"
]
[project.optional-dependencies]
dev = ["black", "pytest"]
[project.urls]
Homepage = "https://github.com/rbroc/simcat"
Issues = "https://github.com/rbroc/simcat/issues"