-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (28 loc) · 792 Bytes
/
Copy pathpyproject.toml
File metadata and controls
31 lines (28 loc) · 792 Bytes
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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "micSync"
version = "1.0.0"
description = "Host-side importer for DJI Mic recordings"
readme = "README.md"
requires-python = ">=3.11"
authors = [
{ name = "GP2P" },
]
keywords = ["audio", "dji", "importer", "macos", "shortcuts"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Operating System :: MacOS",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: System :: Archiving",
"Topic :: Utilities",
]
[project.scripts]
micsync = "micsync.cli:main"
[tool.setuptools.packages.find]
where = ["src"]