forked from smart-social-contracts/kybra-simple-db
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (31 loc) · 1.15 KB
/
pyproject.toml
File metadata and controls
34 lines (31 loc) · 1.15 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ic-python-db"
version = "0.9.1"
description = "A lightweight key-value database written in Python, intended for use on the Internet Computer (IC)"
readme = "README.md"
authors = [
{ name = "Smart Social Contracts", email = "contact@smartsocialcontracts.org" }
]
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Topic :: Database",
"Topic :: Software Development :: Libraries :: Python Modules",
]
keywords = ["database", "key-value", "entity", "relationship", "audit"]
requires-python = ">=3.10"
dependencies = []
[project.urls]
Homepage = "https://github.com/smart-social-contracts/ic-python-db"
Repository = "https://github.com/smart-social-contracts/ic-python-db.git"
Issues = "https://github.com/smart-social-contracts/ic-python-db/issues"
[tool.setuptools]
packages = ["ic_python_db"]