forked from python-acoustics/python-acoustics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (38 loc) · 835 Bytes
/
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
[build-system]
requires = ["flit_core>=3.2"]
build-backend = "flit_core.buildapi"
[project]
name = "acoustics"
version = "0.2.6"
authors = [
{ name="Python Acoustics" },
]
description = "Acoustics module for Python."
readme = "README.md"
requires-python = ">=3.6"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"numpy >= 1.8",
"scipy >= 0.16",
"matplotlib",
"six >= 1.4.1",
"pandas >= 0.15",
"tabulate",
]
[project.optional-dependencies]
documentation = [
"sphinx"
]
fast_fft = [
"pyFFTW"
]
[project.license]
file = "LICENSE"
[project.urls]
"Homepage" = "https://github.com/python-acoustics/python-acoustics"
"Bug Tracker" = "https://github.com/python-acoustics/python-acoustics/issues"
[tool.flit.sdist]
include = ["tests/"]