-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (32 loc) · 1.17 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
[tool.poetry]
name = "search-engine-cpp"
version = "0.2.0"
description = "Search Engine is a project that implements a basic search engine using C++, Python, and Cython. It builds a reverse index and ranks pages with the PageRank algorithm based on keyword relevance and page importance."
authors = ["Pedro Bianchini de Quadros <pedrobiqua@gmail.com>"]
readme = "README.md"
include = [
"search_engine_cpp/lib/*.so",
"search_engine_cpp/.*so",
"CMakeLists.txt",
"README.md", # Inclui o README
"LICENSE.md" # Inclui o arquivo de licença
]
homepage = "https://pedrobiqua.github.io/Search_Engine/html/"
documentation = "https://bianchtech.github.io/Search_Engine/html/Chap_00_Architecture_documentation.html"
repository = "https://github.com/BianchTech/Search_Engine"
license = "MIT"
[tool.poetry.dependencies]
python = "^3.10"
cython = "^3.0.11"
requests = "^2.32.3"
beautifulsoup4 = "^4.12.3"
[tool.poetry.group.dev.dependencies]
commitizen = "^4.1.0"
setuptools = "^75.7.0"
pytest = "^8.3.4"
[build-system]
requires = ["poetry-core", "setuptools", "wheel", "cython"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.build]
script = "build.py"
generate-setup-file = true