-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
64 lines (62 loc) · 2.06 KB
/
Copy pathsetup.py
File metadata and controls
64 lines (62 loc) · 2.06 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
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
"""Setup script for StreamCap."""
from setuptools import setup, find_packages
setup(
name="streamcap",
version="1.0.0",
description="A lightweight cross-platform screen recording and live streaming engine",
long_description=(
"StreamCap is a lightweight cross-platform screen recording and live "
"streaming engine built with PyQt6. It supports fullscreen, region, and "
"window recording modes, camera overlay (picture-in-picture), GIF export, "
"and RTMP live streaming via FFmpeg."
),
long_description_content_type="text/plain",
author="StreamCap Team",
url="https://github.com/streamcap/streamcap",
license="MIT",
packages=find_packages(include=["streamcap", "streamcap.*", "ui", "ui.*"]),
python_requires=">=3.9",
install_requires=[
"PyQt6>=6.5.0",
"mss>=9.0.0",
"opencv-python>=4.8.0",
"Pillow>=10.0.0",
"keyboard>=0.13.5",
"numpy>=1.24.0",
],
extras_require={
"dev": [
"pytest>=7.0.0",
"pytest-qt>=4.2.0",
"pytest-cov>=4.0.0",
"black>=23.0.0",
"flake8>=6.0.0",
"mypy>=1.0.0",
"isort>=5.12.0",
],
},
entry_points={
"console_scripts": [
"streamcap=streamcap.main:main",
],
"gui_scripts": [
"streamcap-gui=streamcap.main:main",
],
},
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: X11 Applications :: Qt",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Multimedia :: Video :: Capture",
"Topic :: Multimedia :: Video :: Conversion",
],
include_package_data=True,
zip_safe=False,
)