-
Notifications
You must be signed in to change notification settings - Fork 162
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (35 loc) · 918 Bytes
/
pyproject.toml
File metadata and controls
39 lines (35 loc) · 918 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
[project]
name = "octosuite"
version = "5.1.0"
description = "Terminal-based toolkit for GitHub data analysis."
readme = "README.md"
license = "MIT"
authors = [
{ name = "Ritchie Mwewa", email = "hi@rly0nheart.com" }
]
requires-python = ">=3.13"
dependencies = [
"rich>=14.3.3",
"questionary>=2.1.1",
"pyfiglet>=1.0.4",
"update-checker>=0.18.0",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Intended Audience :: End Users/Desktop",
"Operating System :: OS Independent",
"Natural Language :: English"
]
[project.urls]
Homepage = "https://bellingcat.com"
Issues = "https://github.com/bellingcat/octosuite/issues"
Repository = "https://github.com/bellingcat/octosuite"
[project.optional-dependencies]
dev = [
"black>=26.1.0",
]
[project.scripts]
octosuite = "octosuite.app.main:start_app"
[tool.uv]
package = true