-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (45 loc) · 1.33 KB
/
Copy pathpyproject.toml
File metadata and controls
51 lines (45 loc) · 1.33 KB
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
[build-system]
requires = ["setuptools", "wheel", "numpy", "cython"]
build-backend = "setuptools.build_meta"
[project]
name = "fpcs"
authors = [
{ name = "Thomas Michelat", email = "thomas.michelat@gmail.com" },
]
description = "Feature-Preserving Compensated Sampling for time series downsampling"
dynamic = ["version", "readme"]
license = "MIT"
keywords = ["downsampling", "time series", "visualization", "data science"]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Cython",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Visualization",
]
requires-python = ">=3.11"
dependencies = [
"numpy",
]
[project.urls]
Homepage = "https://github.com/tmichela/fpcs"
Repository = "https://github.com/tmichela/fpcs"
[project.optional-dependencies]
dev = [
"cython",
"matplotlib",
"lttbc",
"pytest",
"pytest-benchmark",
]
[tool.setuptools]
package-dir = {"" = "src"}
packages = ["fpcs"]
[tool.setuptools.dynamic]
version = { attr = "fpcs.__version__" }
readme = { file = ["README.md"], content-type = "text/markdown" }
[tool.pytest.ini_options]
pythonpath = ["src"]