-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (43 loc) · 978 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
41
42
43
44
45
46
47
48
[tool.poetry]
name = "aru_metadata_parser"
version = "0.1.0"
description = "Parse metadata from ARUs including the AudioMoth"
authors = [
"Sam Lapp <[email protected]>",
"Sasha Syunkova <>",
"Justin Kitzes <[email protected]>",
]
license = "MIT"
readme = "README.md"
repository = "https://github.com/jkitzes/aru_metadata_parser"
packages = [{include = "aru_metadata_parser"}]
include = ["aru_metadata_parser/**/*.py"]
[tool.poetry.dependencies]
python = ">=3.8"
docopt = ">=0.6.2"
soundfile = ">=0.11"
pytz = ">=2015.7"
[tool.poetry.dev-dependencies]
black = "~=22.8"
pre-commit = ">=1.18"
sphinx = ">=2.1"
pytest = ">=5.1"
sphinx-rtd-theme = ">=0.4.3"
recommonmark = ">=0.6.0"
nbsphinx = ">=0.7.1"
m2r = ">=0.2"
docutils = "=0.17"
[tool.black]
line-length = 88
target_version = ['py37', 'py38']
include = '\.pyi?$'
exclude = '''
/(
\.git
| dist
)/
'''
[tool.poetry.scripts]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"