-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
34 lines (30 loc) · 1006 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
[tool.poetry]
package-mode = true
name = "irene-sankey"
version = "1.1.2"
description = "A package for generating source-target pair and node map from pandas DataFrames for Sankey flow diagrams"
authors = ["FOX Techniques <[email protected]>"]
homepage = "https://github.com/fox-techniques/irene-sankey"
license = "MIT"
readme = "README.md"
packages = [{include = "irene_sankey"}]
[tool.poetry.dependencies]
python = "^3.8"
requests = "^2.32.3"
plotly = "^5.24.1"
pandas = [
{version = ">=1.5,<2.0", markers = "python_version < '3.10'"},
{version = ">=1.5", markers = "python_version >= '3.10'"}
]
numpy = [
{version = ">=1.24,<2.0", markers = "python_version < '3.10'"},
{version = ">=1.24", markers = "python_version >= '3.10'"}
]
mkdocs-material = "^9.5.43"
[tool.poetry.dev-dependencies]
pytest = "^8.3.3"
[tool.poetry.urls]
"Homepage" = "https://github.com/fox-techniques/irene-sankey"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"