-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (34 loc) · 1.07 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
[project]
name = "badapple"
version = "0.0.9a"
description = "play the video in the console as ASCII art"
readme = "README.rst"
requires-python = ">=3.9"
license = {file = "LICENSE"}
keywords = ["badapple", "asciiart"]
authors = [
{name = "userElaina", email = "[email protected]" }
]
maintainers = [
{name = "userElaina", email = "[email protected]" }
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3"
]
dependencies = [
"opencv-python", "x256numpy"
]
[project.optional-dependencies]
audio = ["anyplayer>=0.0.5"]
anyplayer = ["anyplayer>=0.0.5"]
dev = ["anyplayer[dev]>=0.0.5"]
[project.urls]
"Homepage" = "https://github.com/bad-apple-lab/Bad-Apple-Python-Module"
"Bug Reports" = "https://github.com/bad-apple-lab/Bad-Apple-Python-Module/issues"
"Source" = "https://github.com/bad-apple-lab/Bad-Apple-Python-Module"
[tool.setuptools]
package-data = {"badapple" = ["*.data", "badapple.*"]}
[build-system]
requires = ["setuptools>=43.0.0", "wheel"]
build-backend = "setuptools.build_meta"