-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (37 loc) · 984 Bytes
/
Copy pathpyproject.toml
File metadata and controls
42 lines (37 loc) · 984 Bytes
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
[build-system]
requires = ["hatchling >= 1.26"]
build-backend = "hatchling.build"
[project]
name = "AfterPy"
version = "1.0.0"
authors = [
{name = "Oliver A Collins", email = "oliver7collins@outlook.com"},
{name = "Olivia Stevens", email = "olivia.stevens244@gmail.com"}
]
description = "A Python package enabling users to generate afterimage illusions."
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"pillow",
"numpy",
"imageio",
"imageio-ffmpeg"
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license = "MIT"
license-files = ["LICEN[CS]E*"]
[project.urls]
Homepage = "https://github.com/OliverACollins/AfterPy"
Issues = "https://github.com/OliverACollins/AfterPy/issues"
[project.scripts]
afterpy = "src.scripts.cli:main"
[tool.hatch.build]
include = [
"src/scripts/default_input/*.jpg",
"src/scripts/fonts/*.ttf",
]
[tool.hatch.build.targets.wheel]
packages = ["src"]