-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
33 lines (29 loc) · 1009 Bytes
/
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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "cvtease"
version = "0.1.18"
description = "A CLI tool for computer vision that is under development. Includes a space shooter game using ASCII art."
readme = "README.md"
requires-python = ">=3.7"
dependencies = ["click", "colorama", "opencv-python"]
license = { file = "LICENSE" }
authors = [
{ name = "w3cdpass", email = "[email protected]" }
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[project.urls]
"Homepage" = "https://github.com/w3cdpass/cvtease"
"Bug Tracker" = "https://github.com/w3cdpass/cvtease/issues"
[project.scripts]
cvtease = "cvtease.cli:main"