-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
50 lines (45 loc) · 1.17 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
[build-system]
requires = ["setuptools>=61.2", "wheel"]
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages.find]
include = ["social_distancing_sim*"]
exclude = ["docs*", "tests*", "images*"]
[project]
name = "social_distancing_sim"
requires-python = ">= 3.9"
version = "0.11.2"
description = ""
authors = [
{name = "Gareth Jones ", email = "garethgithub@gmail.com"}
]
readme = "README.MD"
classifiers=[
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
]
dependencies = [
"networkx",
"numpy<=1.23",
"matplotlib",
"imageio",
"dataclasses",
"seaborn<=0.13",
"tqdm",
"joblib",
"pandas",
"mlflow",
"gym>=0.26",
"uvicorn",
"aiofiles",
]
[project.optional-dependencies]
rlk = ["reinforcement-learning-keras==0.5.1",]
fastapi = ["fastapi",]
gradio = ["gradio",]
dev = ["pytest", "pre-commit"]
[project.urls]
Homepage = "https://github.com/garethjns/social-distancing-sim"
Repository = "https://github.com/garethjns/social-distancing-sim"