-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
53 lines (49 loc) · 1.34 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
[project]
name = "tweetynet"
description = "neural network that segments and labels birdsong and other animal vocalizations"
version = "0.9.0"
authors = [
{name = "Yarden Cohen", email = "[email protected]"},
{name = "David Nicholson", email = "[email protected]"},
]
readme = "README.md"
classifiers = [
'License :: OSI Approved :: BSD License',
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: Implementation :: CPython'
]
requires-python = ">=3.8"
license = {file = "LICENSE"}
dependencies = [
"torch>=1.7.1",
"vak>=0.8.0"
]
[project.optional-dependencies]
test = [
"pytest >=2.7.3",
"pytest-cov",
]
dev = [
"flit",
"ipython>=7.30.1",
"nox",
]
[project.urls]
Source = 'https://github.com/yardencsGitHub/tweetynet'
[project.entry-points."vak.models"]
'TweetyNetModel' = 'tweetynet:TweetyNetModel'
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.sdist]
exclude = [
"doc/notebooks",
"article/data",
"article/results",
"article/doc"
]