This repository has been archived by the owner on Apr 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
78 lines (72 loc) · 1.6 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
75
76
77
78
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "tefs"
version = "0.3.2"
authors = [
{ name = "Teo Bucci", email = "[email protected]" },
{ name = "Paolo Bonetti", email = "[email protected]" },
]
description = "Causal feature selection for time series data using transfer entropy"
readme = "README.md"
license = { file = "LICENSE" }
keywords = [
"tefs",
"transfer entropy",
"feature selection",
"causality",
"time series",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy",
"pandas",
"matplotlib",
"scipy",
"seaborn",
"scikit-learn",
]
requires-python = ">=3.9"
[project.urls]
Homepage = "https://github.com/teobucci/tefs"
Documentation = "https://teobucci.github.io/tefs/"
Repository = "https://github.com/teobucci/tefs"
[tool.pdm.dev-dependencies]
docs = [
"sphinx",
"sphinx-rtd-theme",
"myst-parser",
"nbsphinx",
"ipykernel",
"jupyter",
"jupyterlab",
"nbconvert",
]
test = [
"pytest",
"pytest-cov",
]
build = [
"setuptools",
"wheel",
"twine",
"build",
"bumpver",
]
[tool.bumpver]
current_version = "0.3.2"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "Bump version {old_version} -> {new_version}"
commit = true
tag = true
push = true
[tool.bumpver.file_patterns]
"pyproject.toml" = ['current_version = "{version}"', 'version = "{version}"']
"src/tefs/__init__.py" = ["{version}"]
[tool.pdm]
distribution = true