-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (42 loc) · 1022 Bytes
/
pyproject.toml
File metadata and controls
48 lines (42 loc) · 1022 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[build-system]
requires = ["hatchling>=1.25"]
build-backend = "hatchling.build"
[project]
name = "open-pulse-crawler"
version = "0.1.0"
description = "GitHub BFS Crawler - Discover users, organizations, and repositories"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "Apache 2.0" }
authors = [
{ name = "caviri" }
]
dependencies = [
"pygithub>=2.1.1",
"pydantic>=2.0.0",
"typer>=0.9.0",
"rich>=13.0.0",
"python-dotenv>=1.0.0",
"tqdm>=4.66.0",
"scipy==1.16.2",
]
[project.optional-dependencies]
viz = [
"networkx>=3.0",
"matplotlib>=3.7.0",
"adjustText>=1.3.0",
]
dev = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"black>=23.0.0",
"ruff>=0.1.0",
]
[project.urls]
Homepage = "https://github.com/sdsc-ordes/open-pulse-crawler"
[project.scripts]
open-pulse-crawler = "open_pulse_crawler.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["src/open_pulse_crawler"]
[tool.hatch.build]
packages = ["src/open_pulse_crawler"]