-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
74 lines (66 loc) · 1.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
[project]
name = "xiplot"
version = "0.4.1"
authors = [
{ name = "Akihiro Tanaka", email = "akihiro.fin@gmail.com" },
{ name = "Juniper Tyree", email = "juniper.tyree@helsinki.fi" },
{ name = "Anton Björklund" },
{ name = "Jarmo Mäkelä" },
]
description = "Interactive data visualization tool"
license = { file = "LICENSE-MIT" }
readme = "README.md"
requires-python = ">=3.7"
keywords = ["Visalisation", "Virtual Laboratory", "Exploratory Data Analysis"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Visualization",
]
dependencies = [
"dash == 2.6.2",
"dash-extensions == 0.1.4",
"dash-mantine-components == 0.10.2",
"dash-uploader ~= 0.6.0; platform_system!='Emscripten'",
"jsonschema ~= 4.6.0; platform_system!='Emscripten'",
"kaleido ~= 0.2.1; platform_system!='Emscripten'",
"pandas >= 1.4.0, < 2.0.0",
"plotly >= 5.9.0",
"scikit-learn >= 1.0; platform_system!='Emscripten'",
"xiplot_filetypes == 1.0; platform_system!='Emscripten'",
"Werkzeug < 3.0.0",
]
[project.optional-dependencies]
dev = [
"pytest",
"black",
"dash[testing]",
"isort",
"pyproject-flake8",
"webdriver-manager",
"selenium",
"IPython",
]
[project.urls]
homepage = "https://github.com/edahelsinki/xiplot"
repository = "https://github.com/edahelsinki/xiplot.git"
[project.scripts]
xiplot = "xiplot:cli"
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["xiplot", "xiplot.*"]
[tool.black]
target-version = ['py37']
line-length = 79
preview = true
[tool.isort]
py_version = 37
profile = "black"
line_length = 79
[tool.flake8]
max-line-length = 88
exclude = "build/*"