-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (24 loc) · 807 Bytes
/
pyproject.toml
File metadata and controls
28 lines (24 loc) · 807 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "python-card-framework"
version = "2.4.0"
authors = [{ name = "David Harcombe", email = "david.harcombe@gmail.com" }]
description = "API for rendering Chat App Card json."
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license = { text = "Apache 2.0" }
dependencies = ['dataclasses-json>=0.5.2', 'stringcase>=1.2.0']
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages.find]
include = ["card_framework*"]
exclude = ["*_test.py"]
[project.urls]
"Homepage" = "https://github.com/google/python-card-framework"
"Bug Tracker" = "https://github.com/google/python-card-framework/issues"