This commit is contained in:
2022-06-15 03:21:04 +03:00
parent e08e110ec1
commit b48ff99558
5 changed files with 127 additions and 29 deletions

33
pyproject.toml Normal file
View File

@@ -0,0 +1,33 @@
[tool.poetry]
name = "traps"
version = "0.1.0"
description = "how about you pip install some traps"
authors = ["Rdimo <contact.rdimo@gmail.com>"]
license = "MIT"
keywords = [
"traps", "python", "package",
"library", "lib", "module",
"checker"
]
classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/analgadgets/pip-install-traps/issues"
[tool.poetry.dependencies]
python = "^3.7"
requests = "^2.28.0"
[tool.poetry.dev-dependencies]
[tool.poetry.scripts]
traps = "traps:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"