Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
67 lines (60 loc) · 1.87 KB

File metadata and controls

67 lines (60 loc) · 1.87 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
[build-system]
requires = ["maturin>=1.1,<2.0"]
build-backend = "maturin"
[project]
name = "tsdownsample"
description = "Time series downsampling in rust"
version = "0.1.5.1"
requires-python = ">=3.8"
dependencies = ["numpy"]
authors = [{name = "Jeroen Van Der Donckt"}]
readme = "README.md"
license = {text = "MIT"}
keywords = ["time series", "downsampling", "rust", "data science", "visualization"]
classifiers = [
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.14',
'Operating System :: POSIX',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows'
]
[project.urls]
Homepage = "https://github.com/predict-idlab/tsdownsample"
Repository = "https://github.com/predict-idlab/tsdownsample"
# Build Python bindings for rust
[tool.maturin]
bindings = "pyo3"
module-name = "tsdownsample._rust._tsdownsample_rs" # The path to place the compiled Rust module
# See: https://www.maturin.rs/project_layout.html#import-rust-as-a-submodule-of-your-project
# Linting
[tool.ruff]
line-length = 88
[tool.ruff.lint]
select = ["E", "F", "I"]
extend-select = ["Q"]
ignore = ["E402", "F403"]
# Formatting
[tool.black]
color = true
line-length = 88
skip-string-normalization = true
skip-magic-trailing-comma = true
# Static typing
[tool.mypy]
follow_imports = "normal"
strict_optional = true
warn_redundant_casts = true
warn_unused_ignores = true
check_untyped_defs = true
no_implicit_reexport = true
disallow_untyped_defs = false
disallow_any_generics = false
ignore_missing_imports = true
Morty Proxy This is a proxified and sanitized view of the page, visit original site.