-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (38 loc) · 1.25 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
[tool.poetry]
name = "superscript"
version = "0.1.1"
description = "Dynamical software components manager."
authors = ["toxicphreAK <pentesting.laboratories@gmail.com>"]
readme = "README.md"
license = "MIT"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Topic :: System :: Installation/Setup",
"Topic :: System :: Shells",
"Topic :: System :: Software Distribution",
"Topic :: Utilities"
]
keywords = ["packaging", "software", "tools", "collection"]
[tool.poetry.urls]
homepage = "https://github.com/toxicphreAK/superscript"
repository = "https://github.com/toxicphreAK/superscript"
documentation = "https://github.com/toxicphreAK/superscript"
[tool.poetry.scripts]
superscript = "superscript.main:app"
[tool.poetry.dependencies]
python = "^3.8"
typer = {extras = ["all"], version = "^0.7.0"}
GitPython = "^3.1.7"
rich = "^12.6.0"
requests = "^2.24.0"
PyYAML = "^6.0"
pydantic = "^1.10.2"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"