-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (35 loc) · 1.14 KB
/
Copy pathpyproject.toml
File metadata and controls
39 lines (35 loc) · 1.14 KB
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "studioscreenrecorder"
version = "1.0.2"
authors = [
{ name="Madhava", email="your.email@example.com" },
]
description = "High-performance screen recording framework with hardware loopback sync and DSP noise gating."
readme = "readme.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Topic :: Multimedia :: Video :: Capture",
]
dependencies = [
"customtkinter>=5.2.0",
"imageio-ffmpeg>=0.4.9",
"numpy>=1.22.0",
"soundcard>=0.4.2",
"scipy>=1.10.0",
]
[project.urls]
Homepage = "https://pypi.org/project/studioscreenrecorder/"
Repository = "https://github.com/madhavabrightly/screenrecorder-fullpython"
"GitHub Profile" = "https://github.com/madhavabrightly"
"PyPI Profile" = "https://pypi.org/user/brightlyyy/"
"Gravatar Profile" = "https://gravatar.com/madhavabrightly"
[project.scripts]
studioscreenrecorder = "studiocapturepro.recorder:main"
[tool.hatch.build.targets.wheel]
packages = ["src/studiocapturepro"]