forked from Z-Ray-Entertainment/Facetracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
49 lines (44 loc) · 1.54 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
45
46
47
48
49
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "Facetracker"
description = "A wrapper UI for OpenSeeFace's Facetracker"
dynamic = ["version"]
readme = "README.md"
license = { file = "LICENSE" }
dependencies = [
"PyGObject>=3.42.2",
]
requires-python = ">= 3.9"
authors = [
{ name = "Imo 'Vortex Acherontic' Hester", email = "[email protected]" }
]
maintainers = [
{ name = "Imo 'Vortex Acherontic' Hester", email = "[email protected]" }
]
keywords = ["openseeface", "facetracking", "gtk4", "adw", "libadwaita", "adwaita"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: End Users/Desktop",
"Topic :: Multimedia :: Graphics :: Capture",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"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.gui-scripts]
facetracker-gui = "facetracker:run"
[project.urls]
Homepage = "https://github.com/Z-Ray-Entertainment/Facetracker"
Documentation = "https://github.com/Z-Ray-Entertainment/Facetracker"
Repository = "https://github.com/Z-Ray-Entertainment/Facetracker.git"
Issues = "https://github.com/Z-Ray-Entertainment/Facetracker/issues"
[tool.setuptools]
py-modules = ["facetracker"]
[tool.setuptools.dynamic]
version = {attr = "facetracker.const.VERSION"}