-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 815 Bytes
/
pyproject.toml
File metadata and controls
35 lines (31 loc) · 815 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
29
30
31
32
33
34
35
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "hyperify-rune"
version = "0.1.7"
authors = [
{ name="Hyperify", email="info@hyperify.io" },
]
description = "A Python package for Hyperify Rune"
readme = "README.md"
requires-python = ">=3.7"
dependencies = [
"PyYAML>=6.0",
"beautifulsoup4>=4.11.0",
"lxml>=5.3.0",
"mistune>=3.1.0",
"esprima>=4.0.1"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
"Homepage" = "https://github.com/hyperifyio/rune"
"Bug Tracker" = "https://github.com/hyperifyio/rune/issues"
[project.scripts]
rune = "hyperify_rune.__main__:main"
[tool.hatch.build.targets.wheel]
packages = ["src/hyperify_rune"]