generated from esdandreu/python-extension-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (40 loc) · 1.19 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
[build-system]
requires = [
"setuptools>=42",
"wheel",
"scikit-build>=0.13",
"ninja",
"pybind11",
"GitPython",
]
build-backend = "setuptools.build_meta"
[project]
# https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html
# https://peps.python.org/pep-0621/
name = "acoustic-odometry"
authors = [
{ name = "Andreu Gimenez", email = "[email protected]" },
]
description = "Acoustic Odometry library"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.7"
keywords = ["audio", "odometry", "slam", "robotics"]
dynamic = ["version"]
dependencies = [
"requests", "numpy", "matplotlib", "pyyaml", "python-dotenv", "pandas",
"torch", "torchaudio", "librosa"
]
[project.urls]
homepage = "https://github.com/AcousticOdometry/AO"
repository = "https://github.com/AcousticOdometry/AO"
[project.optional-dependencies]
# When adding `[test]` to your `pip install` command you can install the extra
# dependencies associated with testing. Example `pip install .[test]`
# https://setuptools.pypa.io/en/latest/userguide/dependency_management.html#optional-dependencies
test = ["pytest"]
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = [
"tests",
]