-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (28 loc) · 855 Bytes
/
pyproject.toml
File metadata and controls
35 lines (28 loc) · 855 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
29
30
31
32
33
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "wave_signal_processing"
version = "0.1.0"
description = "Reusable utility functions for internal projects"
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"numpy",
"pandas",
"matplotlib",
"pytest",
"scipy",
"numba"
]
authors = [
{ name = "Anna Savage", email = "anna.savage@sofarocean.com" }
]
license = { text = "MIT" }
[project.urls]
Homepage = "https://github.com/sofarocean/spotter_analysis_examples/wave_signal_processing"
Repository = "https://github.com/sofarocean/spotter_analysis_examples/wave_signal_processing"
Issues = "https://github.com/sofarocean/spotter_analysis_examples/wave_wignal_processing/issues"
[tool.setuptools.packages.find]
# Enables automatic inclusion of your package
where = ["."]