-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (46 loc) · 1.13 KB
/
pyproject.toml
File metadata and controls
49 lines (46 loc) · 1.13 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
[build-system]
requires = ["maturin>=1.11.0,<2.0"]
build-backend = "maturin"
[project]
name = "sprocket-rl-parser"
version = "1.2.2"
description = "Rocket League replay parsing and analysis."
readme = "README.md"
requires-python = ">=3.7"
authors = [
{ name = "Sprocket Dev Team", email = "asaxplayinghorse@gmail.com" },
]
license = { text = "Apache 2.0" }
keywords = ["rocket-league"]
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"License :: OSI Approved :: Apache Software License",
"Development Status :: 4 - Beta",
]
dependencies = [
"pandas",
"protobuf>=5.29.3,<6.0.0",
"openpyxl",
"numpy",
]
[project.scripts]
carball = "carball.command_line:main"
[tool.maturin]
features = ["pyo3/extension-module"]
module-name = "carball._lib"
python-source = "."
include = ["api/**/*.proto", "utils/**/*.py", "carball/**/*"]
exclude = [
"target/**",
"venv/**",
".git/**",
"*.replay",
"*.dll",
"*.png",
"**/*.pyc",
"__pycache__/**",
"build/**",
"dist/**",
]