forked from steDamiano/pyroadacoustics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (40 loc) · 1.37 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
45
[build-system]
# Minimum requirements for the build system to execute.
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "pyroadacoustics"
version = "1.1.0"
authors=[
{name = "Stefano Damiano", email="stefano.damiano@esat.kuleuven.be"}
]
description="A package for simulating the sound propagation in a road scenario"
readme= {file="README.md", content-type = "text/markdown"}
license = { file = "LICENSE" }
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Information Technology",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Multimedia :: Sound/Audio :: Analysis",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
requires-python = ">=3.9"
dependencies = [
"wheel",
'numpy',
'scipy>=0.18.0',
'matplotlib'
]
keywords=["outdoor acoustics", "automotive", "signal processing", "traffic sound simulation"]
[project.urls]
Repository = "https://github.com/steDamiano/pyroadacoustics"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include =["pyroadacoustics"]
[tool.setuptools.package-data]
"*" = ["*.json"]