forked from turner-anderson/streamlit-cropper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
29 lines (27 loc) · 812 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
[project]
name = "streamlit-cropper"
version = "0.2.2"
authors = [{name="Turner Anderson", email="[email protected]"}]
description = "A simple image cropper for Streamlit"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"streamlit >= 1.27.0",
"Pillow >= 9.2.0",
"numpy >= 1.23.5"
]
[project.urls]
"Homepage" = "https://github.com/turner-anderson/streamlit-cropper"
"Bug Tracker" = "https://github.com/turner-anderson/streamlit-cropper/issues"
[build-system]
requires = ["setuptools>=61.0",
"streamlit >= 1.27.0",
"Pillow >= 9.2.0",
"numpy >= 1.23.5"
]
build-backend = "setuptools.build_meta"