forked from SerpentAI/D3DShot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (39 loc) · 1.26 KB
/
pyproject.toml
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
[tool.poetry]
name = "D3DShot"
version = "0.1.5"
description = "Extremely Fast and Robust Screen Capture on Windows with the Desktop Duplication API"
readme = "README.md"
authors = ["Nicholas Brochu <[email protected]>"]
license = "MIT"
repository = "https://github.com/SerpentAI/D3DShot"
keywords = ["Screen Capture", "Screenshot", "Computer Vision", "Windows"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: Microsoft :: Windows",
"Operating System :: Microsoft :: Windows :: Windows 8.1",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Topic :: Multimedia :: Graphics",
"Topic :: Multimedia :: Graphics :: Capture",
"Topic :: Multimedia :: Graphics :: Capture :: Screen Capture"
]
packages = [
{include = "d3dshot"},
]
include = []
[tool.poetry.dependencies]
python = ">=3.6"
comtypes = "~1.1.14"
pillow = "~9.5.0"
[tool.poetry.dev-dependencies]
ipython = "~7.14"
notebook = "~6.0"
[tool.black]
line-length = 99
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"