-
-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (32 loc) · 972 Bytes
/
pyproject.toml
File metadata and controls
35 lines (32 loc) · 972 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
[project]
name = "djblue.portal"
version = "0.65.0"
license = { file = "LICENSE" }
readme = "README.md"
description = "A clojure tool to navigate through your data."
authors = [
{ name = "djblue", email = "djblue@users.noreply.github.com" },
]
keywords = [ "clojure", "basilisp", "inspector", "portal", "datafy", "nav" ]
requires-python = ">= 3.8"
dependencies = [
"aiohttp>=3.13.4",
"asyncio>=3.4.3",
"basilisp>=0.4.0",
]
[tool.poetry]
packages = [
{ include = "portal", from = "src" },
]
include = [
{ path = "resources/portal/*", format = [ "sdist", "wheel" ] }
]
[project.urls]
Homepage = "https://github.com/djblue/portal"
Standalone = "https://djblue.github.io/portal/"
Documentation = "https://cljdoc.org/d/djblue/portal/"
Issues = "https://github.com/djblue/portal/issues"
Changelog = "https://github.com/djblue/portal/blob/master/CHANGELOG.md"
[build-system]
requires = ["poetry-core==2.1.3"]
build-backend = "poetry.core.masonry.api"