-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (48 loc) · 1.34 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
50
51
52
53
# pyproject.toml
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "streamlit-chat-prompt"
version = "0.3.7"
description = "A streamlit custom component that allows you to create a chat prompt with paste and image attachment support"
readme = { file = "README.md", content-type = "text/markdown" }
authors = [
{ name = "Tyler House", email = "26489166+tahouse@users.noreply.github.com" },
]
license = { text = "Apache-2.0" }
keywords = [
"streamlit",
"component",
"chat",
"prompt",
"paste",
"image",
"clipboard",
"material ui",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Topic :: Desktop Environment",
"Topic :: Multimedia :: Graphics",
"Topic :: Software Development :: User Interfaces",
]
requires-python = ">=3.7"
dependencies = ["streamlit >=0.63", "pydantic >=2"]
[project.optional-dependencies]
devel = [
"wheel",
"setuptools==69.0.3",
"pytest==7.4.0",
"twine~=6.1",
"packaging>=24.2",
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["*"]