-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (37 loc) · 1.37 KB
/
Copy pathpyproject.toml
File metadata and controls
41 lines (37 loc) · 1.37 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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "git_cluster"
version = "0.4.2"
description = "An enhanced version of the GIT (Graph Intensity Topology) 🌐 clustering algorithm, repackaged 📦 for optimal ease of use 🛠️."
authors = ["LABRIJI Saad <labrijisaad@gmail.com>"]
readme = "README.md"
homepage = "https://github.com/labrijisaad/Git-Clustering"
repository = "https://github.com/labrijisaad/Git-Clustering"
documentation = "https://github.com/gaozhangyang/GIT#readme"
keywords = ["GIT_clustering", "clustering", "graph-intensity-topology", "data-science"]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Programming Language :: Python :: 3.11",
]
packages = [
{ include = "git_cluster", from = "src" },
{ include = "dataloaders", from = "src" },
{ include = "utils", from = "src" },
]
[tool.poetry.dependencies]
python = ">=3.8.0"
numpy = "^1.22.2"
scipy = "^1.8.0"
scikit-learn = "^1.2.2"
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
black = "^22.1.0"
isort = "^5.10.1"
[tool.poetry.urls]
"Homepage" = "https://github.com/labrijisaad/Git-Clustering"
"Repository" = "https://github.com/labrijisaad/Git-Clustering"
"Documentation" = "https://github.com/gaozhangyang/GIT#readme"