-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (29 loc) · 758 Bytes
/
pyproject.toml
File metadata and controls
33 lines (29 loc) · 758 Bytes
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
[project]
name = "hvectorspaces"
version = "0.2.0"
description = "An academic project to study citation graphs for vector space related research."
authors = [
{ name = "Francesco Preta", email = "francesco.preta@gmail.com" },
{ name = "Mikael Brunila", email = "mikael.brunila@gmail.com"}
]
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"aiohttp>=3.13.2",
"tqdm>=4.67.1",
"python-dotenv>=1.2.1",
"psycopg2-binary>=2.9.11",
"requests>=2.32.5",
"networkx>=3.2",
]
[project.optional-dependencies]
dev = [
"pytest>=8.4.2",
"pytest-asyncio>=1.2.0"
]
[tool.pytest.ini_options]
addopts = "-v"
testpaths = ["tests"]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"