-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
45 lines (40 loc) · 1.28 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[tool.poetry]
name = "hypergraph-db"
version = "0.1.3"
description = "A Lightweight Hypergraph Database"
authors = ["Yifan Feng <evanfeng97@qq.com>"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/iMoonLab/Hypergraph-DB"
keywords = ["hypergraph", "database", "visualization"]
packages = [
{ include = "hyperdb" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: Apache Software License",
]
[tool.poetry.dependencies]
python = "^3.10"
[tool.black]
include = '\.pyi?$'
line-length = 119
[tool.isort]
profile = "black"
line_length = 119
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"