-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpyproject.toml
83 lines (74 loc) · 2.48 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[tool.poetry]
name = "PyHa"
version = "1.0.1"
description = "PyHa"
authors = [
"UCSD Engineers for Exploration <[email protected]>",
"Jacob Ayers <[email protected]>",
"Natalie Franklin",
"Sam Prestrelski <[email protected]>",
"Sean Perry <[email protected]>",
"Mugen Blue",
"Nishant Balaji",
"Teo Maldonado",
"Vanessa Salgado",
"Pranjal Chatterjee",
"Shreyas Anantha Ramaprasad",
"Shravan Konduru",
"Benjamin Cates"
]
license = "CC-BY-NC-SA-4.0"
readme = "README.md"
repository = 'https://github.com/UCSD-E4E/PyHa'
packages = [
{include = "PyHa"}
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.group.dev.dependencies]
pylint = "^3.0.2"
pytest = "^7.4.3"
nas_unzip = { git="https://github.com/UCSD-E4E/synology-download.git", rev="dcca086" }
synology-api = "0.5.1"
autopep8 = "^2.0.4"
[tool.poetry.dependencies]
python = ">=3.9,<3.11"
librosa = "^0.10.1"
jupyter = "^1.0.0"
scikit-learn = "^1.3.2"
seaborn = "^0.13.0"
keras = "^2.8.0"
pandas = "^2.0.0"
matplotlib = "^3.4.1"
scipy = "^1.6.2"
# See https://github.com/pytorch/pytorch/issues/100974
torch = ">=2.0.0, !=2.0.1, !=2.1.0"
# see https://github.com/python-poetry/poetry/issues/8271
tensorflow = {version = "^2.13.0" }
tensorflow-macos = { version = "^2.13.0", platform = "darwin", markers = "platform_machine=='arm64'" }
tensorflow-intel = { version = "2.13.0", platform = "win32" }
tensorflow-cpu = [
{ version = "^2.13.0", platform = "linux", markers = "platform_machine!='arm64' and platform_machine!='aarch64'" },
{ version = "^2.13.0", platform = "darwin", markers = "platform_machine!='arm64' and platform_machine!='aarch64'" },
]
tensorflow-cpu-aws = { version = "^2.13.0", platform = "linux", markers = "platform_machine=='arm64' or platform_machine=='aarch64'" }
tensorflow-io-gcs-filesystem = [
{ version = ">= 0.23.1", markers = "platform_machine!='arm64' or platform_system!='Darwin'" },
{ version = "< 0.32.0", markers = "platform_system == 'Windows'" }
]
resampy = "^0.4.2"
[tool.semantic_release]
version_variable = "pyproject.toml:version"
tag_format = "v{version}"
commit_parser = "angular"
commit_message = "{version}\n\nAutomatically generated by python-semantic-release"
[tool.semantic_release.branches.main]
match = "(main|master)"
prerelease = false
[tool.semantic_release.branches.notmain]
match = "^(?!main|master)"
prerelease = true
[tool.semantic_release.publish]
dist_glob_patterns = ["dist/**"]
upload_to_vcs_release = true