-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (38 loc) · 980 Bytes
/
pyproject.toml
File metadata and controls
44 lines (38 loc) · 980 Bytes
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
[project]
name = "visualization-toolkit"
# version = "0.0.1rc1"
dynamic = ["version"]
description = ""
license = "Apache-2.0"
authors = [
{name = "Aleksandr Sinitca",email = "siniza.s.94@gmail.com"},
{name = "Asya Lyanova", email = "lyanova.ai@gmail.com"},
]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"numpy>=1.26.4",
"pandas>=2.2",
"matplotlib>=3.10",
]
[project.optional-dependencies]
stats = [
"scipy>=1.9"
]
[project.urls]
Repository = "https://github.com/Digiratory/visualization-toolkit.git"
[tool.poetry]
packages = [{include = "visualization_toolkit", from = "src"}]
[build-system]
requires = [
"poetry-core>=2.0.0,<3.0.0",
"setuptools>=80",
"setuptools-scm>=8",
"wheel"
]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
version_file = "src/visualization_toolkit/_version.py"
tag_regex = "^release/(.+?)(?:-.+)?$"
version_scheme = "release-branch-semver"
local_scheme = "no-local-version"