-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
46 lines (43 loc) · 1.04 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
[tool.poetry]
name = "ILLIXR-analysis"
version = "0.1.0"
description = ""
# Feel free to add yourself here.
# Perhaps we should populate this from the GitHub contributors.
authors = ["Samuel Grayson <[email protected]>"]
license = "NCSA"
repository = "https://github.com/ILLIXR/ILLIXR-analysis"
packages = [
{ include = "illixr" },
]
[tool.poetry.dependencies]
python = ">=3.8,<3.9"
typer = {extras = ["all"], version = "^0.3.2"}
typer-cli = "^0.0.11"
pandas = "^1.2.1"
attrs = "^20.3.0"
networkx = "^2.5"
anytree = "^2.8.0"
tqdm = "^4.56.0"
pygraphviz = "^1.7"
"charmonium.cache" = "^1.2.1"
matplotlib = "^3.3.4"
ipdb = "^0.13.6"
dask = {extras = ["distributed"], version = "^2021.4.1"}
PyQt5 = "^5.15.4"
scipy = "^1.6.3"
frozendict = "^1.2"
"charmonium.time-block" = "^0.2.1"
graphviz = "^0.16"
bokeh = "^2.3.1"
tabulate = "^0.8.9"
[tool.poetry.dev-dependencies]
autoflake = "^1.4"
black = "^20.8b1"
mypy = "^0.800"
pylint = "^2.6.0"
ipython = "^7.19.0"
psutil = "^5.8.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"