-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
31 lines (28 loc) · 903 Bytes
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=67.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "AshenDB"
version = "0.0.8"
description = "Another stupid library for using json as Database"
readme = "README.rst"
authors = [{name = "Abdullah Al Muaz", email = "[email protected]"}]
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
]
keywords = ["json", "mongodb", "database", "embedded-database", "serverless"]
dependencies = [
"aiofiles",
]
requires-python = ">=3.10"
[project.urls]
Homepage = "https://github.com/aurkaxi/AshenDB"
Documentation = "https://ashendb.rtfd.io"
[project.scripts]
ashendb = "ashendb.__main__:main"