-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (37 loc) · 1.22 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
[tool.poetry]
name = "git-id"
version = "1.1.2"
description = "An ID manager for git"
authors = ["Yuichiro Smith <[email protected]>"]
license = "MIT License"
readme = "README.md"
repository = "https://github.com/yu-ichiro/git-id"
keywords = ["git", "id", "identity", "manager"]
classifiers = [
"Natural Language :: English",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Version Control :: Git",
"Typing :: Typed",
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/yu-ichiro/git-id/issues"
[tool.poetry.dependencies]
python = "^3.8.1"
click = "^7.1.2"
pyyaml = "^5.3.1"
gitpython = "^3.1.9"
[tool.poetry.scripts]
git-id = "git_id.core:main"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"