-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (56 loc) · 1.67 KB
/
Copy pathpyproject.toml
File metadata and controls
64 lines (56 loc) · 1.67 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/repo_exporter"]
[project]
name = "repo-exporter"
dynamic = ["version"]
description = "A Python package to collect key information (Name, description, creation date, last updated date, contributors, etc.) from all repos in a GitHub or Hugging Face organization and save it to a color-coded Google Sheet file of choice."
readme = "README.md"
requires-python = ">=3.10"
authors = [
{ name="Elizabeth G. Campolongo", email="e.campolongo479@gmail.com" }
]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"google-auth==2.41.1",
"gspread==6.2.1",
"pandas==2.3.3",
"PyGithub==2.8.1",
"tqdm==4.67.1",
"PyYAML==6.0.3",
"huggingface_hub==1.2.3",
"python-dotenv==1.2.2"
]
[project.optional-dependencies]
dev = [
"pytest==9.0.3",
]
keywords = [
"github",
"huggingface",
"google-sheets",
"Imageomics",
"automation",
"metadata",
]
[project.urls]
Homepage = "https://github.com/Imageomics/repo-exporter"
Repository = "https://github.com/Imageomics/repo-exporter.git"
"Bug Tracker" = "https://github.com/Imageomics/repo-exporter/issues"
[project.scripts]
repo-exporter = "repo_exporter.__main__:main"
[tool.hatch.version]
path = "src/repo_exporter/__about__.py"
[tool.pytest.ini_options]
pythonpath = ["."]
testpaths = ["tests"]