-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
144 lines (141 loc) · 2.89 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
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
[tool.poetry]
name = "perfsim"
version = "0.1.14"
description = "Cloud native systems performance simulator"
authors = ["Michel Gokan Khan <gokan.michel@gmail.com>"]
license = "GPLv3"
[tool.poetry.dependencies]
python = "^3.12"
ipython = "8.25.0"
ipython-genutils = "0.2.0"
attrs = "23.2.0"
cachetools = "5.3.3"
certifi = "2024.7.4"
chardet = "5.2.0"
cloudpickle = "3.0.0"
cycler = "0.12.1"
decorator = "5.1.1"
future = "1.0.0"
gym = "0.26.2"
idna = "3.7"
iniconfig = "2.0.0"
kiwisolver = "1.4.5"
kubernetes = "29.0.0"
matplotlib = "3.9.0"
networkx = "3.3"
numpy = "1.26.4"
oauthlib = "3.2.2"
overloading = "0.5.0"
pandas = "2.2.2"
Pillow = "10.3.0"
pluggy = "1.5.0"
py = "1.11.0"
pyasn1 = "0.6.0"
pyasn1-modules = "0.4.0"
pyglet = "2.0.15"
pyparsing = "3.1.2"
pytest = "8.2.1"
python-dateutil = "2.9.0.post0"
pytz = "2024.1"
PyYAML = "6.0.1"
requests = "2.32.3"
requests-oauthlib = "2.0.0"
rsa = "4.9"
scipy = "1.13.1"
seaborn = "0.13.2"
simpy = "4.1.1"
six = "1.16.0"
sortedcontainers = "2.4.0"
toml = "0.10.2"
typing = "3.7.4.3"
urllib3 = "2.2.2"
websocket-client = "1.8.0"
prettytable = "3.10.0"
tabulate = "0.9.0"
Flask = "3.0.3"
dash = "2.17.0"
dash-core-components = "2.0.0"
dash-cytoscape = "1.0.1"
dash-html-components = "2.0.0"
dash-table = "5.0.0"
single_source = "0.3.0"
python-benedict = "0.33.2"
pyvis = "0.3.2"
plotly = "5.22.0"
Cython = "3.0.10"
neptune = "1.10.4"
Werkzeug = "3.0.3"
[tool.poetry.dev-dependencies]
python = "^3.12"
ipython = "8.25.0"
ipython-genutils = "0.2.0"
attrs = "23.2.0"
cachetools = "5.3.3"
certifi = "2024.7.4"
chardet = "5.2.0"
cloudpickle = "3.0.0"
cycler = "0.12.1"
decorator = "5.1.1"
future = "1.0.0"
gym = "0.26.2"
idna = "3.7"
iniconfig = "2.0.0"
kiwisolver = "1.4.5"
kubernetes = "29.0.0"
matplotlib = "3.9.0"
networkx = "3.3"
numpy = "1.26.4"
oauthlib = "3.2.2"
overloading = "0.5.0"
pandas = "2.2.2"
Pillow = "10.3.0"
pluggy = "1.5.0"
py = "1.11.0"
pyasn1 = "0.6.0"
pyasn1-modules = "0.4.0"
pyglet = "2.0.15"
pyparsing = "3.1.2"
pytest = "8.2.1"
python-dateutil = "2.9.0.post0"
pytz = "2024.1"
PyYAML = "6.0.1"
requests = "2.32.3"
requests-oauthlib = "2.0.0"
rsa = "4.9"
scipy = "1.13.1"
seaborn = "0.13.2"
simpy = "4.1.1"
six = "1.16.0"
sortedcontainers = "2.4.0"
toml = "0.10.2"
typing = "3.7.4.3"
urllib3 = "2.2.2"
websocket-client = "1.8.0"
prettytable = "3.10.0"
tabulate = "0.9.0"
Flask = "3.0.3"
dash = "2.17.0"
dash-core-components = "2.0.0"
dash-cytoscape = "1.0.1"
dash-html-components = "2.0.0"
dash-table = "5.0.0"
single_source = "0.3.0"
python-benedict = "0.33.2"
pyvis = "0.3.2"
plotly = "5.22.0"
Cython = "3.0.10"
neptune = "1.10.4"
Werkzeug = "3.0.3"
sphinx = "7.3.7"
rst2pdf = "0.93"
pallets-sphinx-themes = "2.1.3"
sphinxcontrib-log-cabinet = "1.0.1"
sphinx-issues = "4.1.0"
sphinx-autodoc-typehints = "2.1.0"
sphinx-book-theme = "1.1.2"
myst-parser = "3.0.1"
m2r2 = "0.3.3"
docutils = "0.20.1"
[build-system]
requires = ["poetry-core>=1.8.3"]
build-backend = "poetry.core.masonry.api"