forked from macaodha/batdetect2_GUI
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added a pyproject file for easy installation
- Loading branch information
1 parent
71d7d53
commit 9a245a0
Showing
2 changed files
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
include LICENSE | ||
include README.md | ||
|
||
recursive-include **/static * | ||
recursive-include **/templates * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
[build-system] | ||
requires = ["setuptools>=61.0"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "batdetect2-gui" | ||
version = "0.0.1" | ||
authors = [ | ||
{ name="Oisin Mac Aodha", email="[email protected]" }, | ||
] | ||
description = "BatDetect2: Audio Annotation Interface" | ||
readme = "README.md" | ||
requires-python = ">=3.7" | ||
dependencies = [ | ||
"flask", | ||
"matplotlib", | ||
"numpy", | ||
"Pillow", | ||
] | ||
classifiers = [ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
] | ||
|
||
[tool.setuptools] | ||
packages = ["batdetect2_gui"] | ||
|
||
[project.urls] | ||
"Homepage" = "https://github.com/macaodha/batdetect2_GUI" | ||
"Bug Tracker" = "https://github.com/macaodha/batdetect2_GUI/issues" | ||
|
||
[project.scripts] | ||
batdetect2-gui = "batdetect2_gui.application:main" | ||
batdetect2-clip = "batdetect2_gui.prepare_audio_files:main" |