-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (42 loc) · 1.33 KB
/
pyproject.toml
File metadata and controls
47 lines (42 loc) · 1.33 KB
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
[project]
name = "cartesapp"
version = "1.2.6"
authors = [
{ name="Lyno Ferraz", email="lyno@prototyp3.dev" },{ name="Felipe Fink Grael", email="felipefg@prototyp3.dev" },
]
description = "A Python Opinionated High Framework for Cartesi Distributed Applications"
readme = "README.md"
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
"python-cartesi@git+https://github.com/prototyp3-dev/python-cartesi@896712ce056fd15daa7117b80fc6defe915edba8",
"pony >= 0.7.19",
"typer >= 0.15.4"
]
[project.optional-dependencies]
dev = [
"Jinja2 >= 3.1.6",
"pydantic-to-typescript >= 2.0.0",
"watchdog >= 6.0.0",
"pytest-order >= 1.3.0",
]
machine = [
"python-cartesi[machine]@git+https://github.com/prototyp3-dev/python-cartesi@896712ce056fd15daa7117b80fc6defe915edba8",
]
cartesapplib = [
"cartesapplib @ git+https://github.com/prototyp3-dev/cartesapplib@v0.1.0",
]
[project.urls]
"Homepage" = "https://github.com/prototyp3-dev/cartesapp"
[build-system]
requires = ["setuptools>=69.0", "wheel"]
build-backend = "setuptools.build_meta"
[project.scripts]
cartesapp = "cartesapp.cli:app"
run_cartesapp = "cartesapp.manager:run"
[tool.setuptools.package-data]
"*" = ["*.jinja"]