-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (59 loc) · 1.52 KB
/
Copy pathpyproject.toml
File metadata and controls
63 lines (59 loc) · 1.52 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
[build-system]
requires = ["maturin>=1.7,<2.0"]
build-backend = "maturin"
[project]
name = "fast-forward-football"
version = "0.2.0"
description = "Fast SecondSpectrum tracking data loader using Rust"
readme = "README.md"
requires-python = ">=3.11"
license = {text = "MIT"}
keywords = ["sports", "tracking", "soccer", "football", "polars"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Rust",
"Topic :: Scientific/Engineering",
]
dependencies = [
"polars>=1.0.0",
"kloppy>=3.18.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"maturin>=1.7",
"markdown-it-py>=3.0",
]
arrow = [
"pyarrow>=14.0.0",
]
pyspark = [
"pyspark>=3.4.0",
"pyarrow>=14.0.0",
"pandas>=2.0.0",
]
test-s3 = [
"moto[server]>=5.0.0", # Mock AWS services
"s3fs>=2024.0.0", # S3 filesystem for kloppy
"boto3>=1.35.0", # AWS SDK
]
all = [
"pyspark>=3.4.0",
"pyarrow>=14.0.0",
"pandas>=2.0.0",
]
[tool.pytest.ini_options]
pythonpath = ["python"]
[tool.maturin]
python-source = "python"
module-name = "fastforward._fastforward"
features = ["pyo3/extension-module"]
manifest-path = "rust/Cargo.toml"