-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (38 loc) · 1.4 KB
/
pyproject.toml
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "expmonkey"
version = "0.0.35"
authors = [
{ name = "liuyibo", email = "liuyibo1994@qq.com" },
]
maintainers = [
{ name = "liuyibo", email = "liuyibo1994@qq.com" },
]
description="A git worktree-based CLI tool for efficient management and navigation of multiple isolated experiments in parallel development workflows"
readme = "README.md"
requires-python = ">=3.5"
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
]
dependencies = [
"colored",
"argcomplete",
"pygit2<1.7.0; python_version < '3.7.0'",
"pygit2; python_version >= '3.7.0'",
]
keywords = ["experiment management", "git worktree", "research workflow", "development tools", "version control", "branch management", "command-line interface", "parallel development", "code branching", "workspace management", "git enhancements", "scientific experiments", "machine learning experiments", "project organization", "code experiments", "git branches"]
[project.urls]
Homepage = "https://github.com/liuyibo/expmonkey"
Issues = "https://github.com/liuyibo/expmonkey/issues"
[project.scripts]
expmonkey = "expmonkey:cli"
em-init-script = "expmonkey:print_init_script"
[tool.hatch.build.targets.wheel]
include = [
"/expmonkey/*.py",
]