-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
27 lines (25 loc) · 822 Bytes
/
pyproject.toml
File metadata and controls
27 lines (25 loc) · 822 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
[project]
name = "metagadget"
version = "0.0.5"
authors = [
{ name="Ryutaro Kurai", email="ryu.kurai@gmail.com" },
{ name="Takefumi Hiraki", email="t.hiraki@cluster.mu" },
]
description = "IoT Framework for Event-Triggered Integration of User-Developed Devices into Commercial Metaverse Platforms"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
"Werkzeug~=3.0.4",
"ngrok~=1.4.0",
]
[project.urls]
Homepage = "https://github.com/cluster-lab/MetaGadget"
Issues = "https://github.com/cluster-lab/MetaGadget/issues"
[build-system]
requires = ["setuptools>=61.0", "twine>=6.0.0", "build>=1.2.2"]
build-backend = "setuptools.build_meta"