-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (72 loc) · 2.12 KB
/
pyproject.toml
File metadata and controls
82 lines (72 loc) · 2.12 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
# allow to run devsimpy as a command by executing the main function of the devsimpy.py file
[project.scripts]
devsimpy = "devsimpy.devsimpy:main"
[project]
name = "devsimpy"
version = "5.1.1"
dependencies = [
"wxpython>=4.2.2",
"psutil",
"pyYAML",
"PyPubSub",
"ruamel.yaml",
"matplotlib",
"chart_studio",
"setuptools",
"pusher",
"ollama",
"openai",
"plotly",
"pyzo",
"pyro4",
"whichpy",
"requests",
"pluginmanager",
"numpy",
"pydot",
"networkx",
"lxml"
]
requires-python = ">=3.9"
authors = [
{name = "Laurent Capocchi", email = "capocchi@univ-corse.fr"},
{name = "Jean-Francois santucci", email = "santuccig@univ-corse.fr"},
]
maintainers = [
{name = "Laurent Capocchi", email = "capocchi@univ-corse.fr"}
]
readme = "README.md"
description = "Python-Based GUI for Discrete Event system Specification (DEVS) Simulation"
license = { text = "LICENSE" }
keywords = ["Simulation", "Modeling", "Discrete Event", "DEVS", "GUI"]
classifiers = [
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 5 - Production/Stable",
# Indicate who your project is intended for
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
# Specify the Python versions you support here.
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python",
]
[tool.setuptools]
license-files = []
packages = ["devsimpy"]
[project.urls]
"Homepage" = "https://capocchi-l.universita.corsica/article.php?id_site=58&id_menu=0&id_rub=663&id_cat=0&id_art=3257&lang=fr"
"Source Code" = "https://github.com/capocchi/DEVSimPy"
"Bug Tracker" = "https://github.com/capocchi/DEVSimPy/issues"
"Changelog" = "https://github.com/capocchi/DEVSimPy/blob/master/CHANGELOG.md"
[project.optional-dependencies]
gui = ["spyder"]