forked from scikit-maad/scikit-maad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
61 lines (56 loc) · 1.69 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "scikit-maad"
authors = [{name = "scikit-maad developers", email = "[email protected]"}]
readme = "README.md"
requires-python = ">=3.8"
description = "Open-source and modular toolbox for quantitative soundscape analysis in Python"
dynamic = ["version"]
license = {file = "LICENSE"}
keywords = ["ecoacoustics", "bioacoustics", "ecology", "sound pressure level", "signal processing"]
dependencies = [
"numpy >=1.21",
"scipy >=1.8",
"scikit-image >=0.19",
"pandas >=1.5",
"resampy >=0.4",
"matplotlib >=3.6"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
'Intended Audience :: Developers',
"License :: OSI Approved :: BSD License",
'Operating System :: Microsoft :: Windows',
'Operating System :: Unix',
'Operating System :: MacOS',
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
'Topic :: Software Development :: Libraries',
"Topic :: Scientific/Engineering :: Artificial Intelligence"
]
[project.optional-dependencies]
test = [
"pytest >=7.1",
"pytest-cov >=4.0",
]
doc = ["sphinx >=5.0"]
build = ["flit >=3.6"]
[project.urls]
Home = "https://github.com/scikit-maad/scikit-maad"
Source = "https://github.com/scikit-maad/scikit-maad"
Documentation = "https://scikit-maad.github.io/"
Tracker = 'https://github.com/scikit-maad/scikit-maad/issues'
[tool.flit.module]
name = "maad"
[tool.flit.sdist]
exclude = [
"./docs",
"./data",
"./example_gallery",
"./tests",
"requirements.txt"
]