-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (40 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
45 lines (40 loc) · 1.01 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
35
36
37
38
39
40
41
42
43
44
45
[tool.poetry]
name = "pumpkin_py"
version = "0.0.2"
description = "Fast semantic search and comparison"
authors = []
license = "BSD-3-Clause"
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Operating System :: POSIX :: Linux",
]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.8"
numpy = "^1.19.0"
rdflib = "^5.0.0"
pyroaring = "^0.3.2"
bidict = "^0.21.2"
[tool.poetry.dev-dependencies]
pytest = "^6.0"
autoflake = "^1.4"
flake8 = "^3.9.2"
isort = "^5.9.1"
black = "^21.12b0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line_length = 100
skip-string-normalization = true
[tool.isort]
profile = "black"
line_length = 100
multi_line_output = 3
include_trailing_comma = true