forked from RootKit-Org/BetterCam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (35 loc) · 1.37 KB
/
setup.py
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
from setuptools import find_packages, setup
with open("README.md", "r", encoding='utf-8') as f:
long_description = f.read()
setup(
name="bettercam",
version="1.0.0",
description = "A Python high-performance screenshot library for Windows use Desktop Duplication API",
packages=find_packages(where="find:"),
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/RootKit-Org/BetterCam",
author="Qfc9",
author_email="[email protected]",
license="MIT",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Operating System :: Microsoft :: Windows :: Windows 8.1",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: Microsoft :: Windows :: Windows 11",
"Topic :: Multimedia :: Graphics",
"Topic :: Multimedia :: Graphics :: Capture",
"Topic :: Multimedia :: Graphics :: Capture :: Screen Capture"
],
install_requires=["numpy", "comtypes"],
extras_require={
"cv2": ["opencv-python"],
},
python_requires=">=3.8",
include_dirs=["bettercam"],
)