-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (23 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
28 lines (23 loc) · 1.08 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "walytis_beta"
authors = [{ name = "Emendir" }]
description = "A flexible, lightweight, nonlinear database-blockchain. Built to be built upon."
readme = {file = "README.md", content-type = "text/markdown"}
dynamic = ["dependencies", "version"]
requires-python = ">=3.11"
[project.urls]
# Homepage = "https://emendir.tech/Projects/Walytis"
Homepage = "https://github.com/emendir/Walytis_Beta"
Documentation = "https://github.com/emendir/Walytis_Beta/blob/master/docs/DocsOverview.md"
Repository = "https://github.com/emendir/Walytis_Beta.git"
IPFS = "https://ipfs.io/ipns/k2k4r8nismm5mmgrox2fci816xvj4l4cudnuc55gkfoealjuiaexbsup/Projects/Walytis"
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
version = {attr= "walytis_beta_tools.versions._WALYTIS_BETA_PACKAGE_VERSION"}
[tool.setuptools.packages.find]
where = ["src"]
include = ["walytis_beta", "walytis_beta_tools", "walytis_beta_tools._experimental", "walytis_beta_api","walytis_beta_api._experimental"]
namespaces = false