-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (37 loc) · 897 Bytes
/
pyproject.toml
File metadata and controls
41 lines (37 loc) · 897 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
[project]
name = "oss-stats"
version = "0.1.0"
authors = [
{ name="Josh Holman", email="git@jolman.me"},
]
description = "A Python CLI tool to fetch GitHub stats from acmcsufoss"
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">=3.13"
dependencies = [
"alive-progress>=3.2.0",
"click>=8.1.7",
"pygithub>=2.4.0",
"python-dotenv>=1.0.1",
"questionary>=2.1.0",
"rich>=13.9.3",
"platformdirs>=4.9.6",
]
[dependency-groups]
dev = [
"ruff>=0.11.11",
"twine>=6.2.0",
]
[project.scripts]
oss-stats = "oss_stats.cli:cli"
[build-system]
requires = ["uv_build>=0.11.6,<0.12"]
build-backend = "uv_build"
[project.urls]
Homepage = "https://github.com/acmcsufoss/oss-stats"
Issues = "https://github.com/acmcsufoss/oss-stats/issues"