44 lines
909 B
TOML
44 lines
909 B
TOML
[project]
|
|
name = "pygwin2"
|
|
version = "2.0.0"
|
|
authors = [
|
|
{ name="MeexReay", email="meexreay@gmail.com" },
|
|
]
|
|
description = "A small example package"
|
|
readme = "README.md"
|
|
requires-python = ">=3.7"
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"Operating System :: OS Independent",
|
|
]
|
|
license = "WTFPL"
|
|
license-files = ["LICENSE"]
|
|
dependencies = [
|
|
"pydub",
|
|
"pygame",
|
|
"requests", # ?????????
|
|
"pyautogui",
|
|
"inputs",
|
|
"pillow",
|
|
"wxPython", # crazy
|
|
"randstr", # just why
|
|
"cython",
|
|
"pywin32",
|
|
"moviepy",
|
|
"pipwin",
|
|
"wave",
|
|
"opencv-python",
|
|
]
|
|
keywords = [
|
|
"gui", "pygame", "windows"
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/MeexReay/pygwin2"
|
|
Issues = "https://github.com/MeexReay/pygwin2/issues"
|
|
|
|
[build-system]
|
|
requires = [
|
|
"setuptools >= 42"
|
|
]
|
|
build-backend = "setuptools.build_meta"
|