-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (26 loc) · 827 Bytes
/
pyproject.toml
File metadata and controls
28 lines (26 loc) · 827 Bytes
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
[project]
name = "simsaber"
version = "0.1.0"
authors = [
{ name="Vivek Nair", email="vcn@berkeley.edu" },
{ name="Atticus Cull", email="atticuscull@berkeley.edu" },
{ name="Ines Bouissou", email="ines.b@berkeley.edu" },
{ name="Christopher Harjadi", email="cwharjadi@berkeley.edu" },
]
description = "Python-based Beat Saber replay simulator and scoring validator."
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"py_bsor >= 0.9.11",
"numpy >= 1.24.2",
"matplotlib >= 3.7.1",
]
[project.urls]
"Homepage" = "https://github.com/MetaGuard/SimSaber"
"Bug Tracker" = "https://github.com/MetaGuard/SimSaber/issues"