-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
42 lines (37 loc) · 1.14 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
[tool.poetry]
name = "pyGinit"
version = "0.5.3"
description = "a simple cli tools for automation git repository creation"
authors = ["fariz <farizi1906@gmail.com>"]
license = "MIT"
readme = "README.md"
packages = [{include = "pyGinit"}]
repository = "https://github.com/AlphaBeta1906/pyGinit"
homepage = "https://github.com/AlphaBeta1906/pyGinit"
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Environment :: Console",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3 :: Only",
]
keywords=["automation","tools","cli","git","github","development"]
[tool.poetry.dependencies]
python = "^3.8"
click = "*"
GitPython = "*"
PyGithub = "*"
colorama = "*"
beautifulsoup4 = "*"
inquirerpy = "*"
[tool.poetry.scripts]
pyginit = "pyGinit.main:pyginit"
[tool.poetry.group.dev.dependencies]
pytest = "^7.1.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"