-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (37 loc) · 988 Bytes
/
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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "popcore"
version = "1.0.1"
authors = [
{name = "Aurélien Bück-Kaeffer", email = "[email protected]"},
{name = "Manfred Diaz"}
]
description = "Core Library of PopRL"
readme = "README.md"
requires-python = ">=3.7"
keywords = ["RL", "poprl", "population"]
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = []
[project.optional-dependencies]
dev = [
"networkx",
"matplotlib",
"pydot",
"torch>=2.0.1",
"numpy>=1.25.0",
"gym>=0.26.2",
"axelrod",
"pytest",
]
[project.urls]
url = 'https://www.python.org/sigs/distutils-sig/'
Repository = 'https://github.com/poprl/popcore'
[tool.setuptools.packages.find]
where = ["src"]
# ... other project metadata fields as specified in:
# https://packaging.python.org/en/latest/specifications/declaring-project-metadata/