-
Notifications
You must be signed in to change notification settings - Fork 84
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (61 loc) · 1.56 KB
/
pyproject.toml
File metadata and controls
66 lines (61 loc) · 1.56 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[project]
name = "mcfly"
version = "4.1.0"
description = "Deep learning for time series data"
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
keywords = ["deep-learning", "time-series", "auto-ml"]
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
"numpy",
"scikit-learn",
"scipy",
"keras>=3.0",
]
[project.optional-dependencies]
dev = [
"coverage",
"prospector[with_pyroma]",
"pytest",
"pytest-cov",
]
publishing = [
"build",
"twine",
"wheel",
"sphinx",
"sphinx-rtd-theme",
]
tensorflow = ["tensorflow>=2.16.1"]
torch = ["torch>=2.1.0"]
jax = ["jax>=0.4.20"]
all = ["mcfly[dev,publishing,tensorflow,torch,jax]"]
[project.urls]
"Homepage" = "https://github.com/NLeSC/mcfly"
"Bug Tracker" = "https://github.com/NLeSC/mcfly/issues"
"Source" = "https://github.com/NLeSC/mcfly"
[tool.setuptools]
license-files = ["LICENSE"]
[tool.setuptools.packages.find]
include = ["mcfly*"]
namespaces = false
[build-system]
requires = ["setuptools>=64.0", "wheel", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
markers = [
"tensorflow: Requires Keras backend TensorFlow.",
"torch: Requires Keras backend PyTorch.",
"jax: Requires Keras backend JAX.",
"integration: Slow and more complicated tests.",
]