-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
48 lines (41 loc) · 947 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "onion_clustering"
version = "0.3.4"
description = "Code for unsupervised clustering of time-correlated data."
# license = "MIT"
maintainers = [
{ name = "Matteo Becchi", email = "[email protected]" },
]
dependencies = [
"matplotlib",
"numpy",
"plotly",
"scipy",
]
requires-python = "<3.11,>=3.9"
readme = "README.md"
[project.urls]
github = "https://github.com/matteobecchi/timeseries_analysis/"
[tool.setuptools_scm]
#write_to = "src/onion_clustering/__version__.py"
[tool.black]
line-length = 79
[tool.ruff]
line-length = 79
lint.extend-select = ["I"]
[tool.mypy]
show_error_codes = true
implicit_optional = false
warn_no_return = true
strict_optional = true
[[tool.mypy.overrides]]
module = [
'onion_clustering.*',
'scipy.*',
'plotly.*',
'mpl_toolkits.mplot3d'
]
ignore_missing_imports = true