-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
54 lines (50 loc) · 1.66 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
47
48
49
50
51
52
53
54
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "catfish-sim"
version = "0.2.0"
authors = [{ name = "Oz Kilic", email = "ozgunozankilic@gmail.com" }]
description = "A multiagent online dating simulation framework."
license = { file = "LICENSE" }
readme = "README.md"
requires-python = ">= 3.6"
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Sociology",
"Topic :: Scientific/Engineering",
"Topic :: Games/Entertainment :: Simulation",
]
keywords = [
"online dating",
"simulation",
"multiagent",
"agent-based modeling",
"social simulation",
]
dependencies = [
"numpy >= 1.23.3",
"pandas >= 1.5.0",
"scikit-learn >= 1.3.2",
"scipy >= 1.8.1",
"trueskill >= 0.4.5",
]
[project.optional-dependencies]
dev = ["pytest >= 7.4.3"]
[project.urls]
Homepage = "https://github.com/ozgunozankilic/catfish-sim"
Repository = "https://github.com/ozgunozankilic/catfish-sim"
Issues = "https://github.com/ozgunozankilic/catfish-sim/issues"
Changelog = "https://github.com/ozgunozankilic/catfish-sim/blob/main/CHANGELOG.md"