Migrate from Pipenv to Poetry
This commit is contained in:
parent
dddf9979db
commit
caf94bc54d
14 changed files with 1109 additions and 504 deletions
44
pyproject.toml
Normal file
44
pyproject.toml
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
[tool.poetry]
|
||||
name = "docker-tor-hidden-service"
|
||||
version = "0.6.0"
|
||||
description = "Display onion sites hosted"
|
||||
authors = ["Christophe Mehay <cmehay@nospam.student.42.fr>"]
|
||||
license = "WTFPL"
|
||||
repository = "https://github.com/cmehay/docker-tor-hidden-service"
|
||||
classifiers=[
|
||||
"Programming Language :: Python",
|
||||
"Development Status :: 1 - Planning",
|
||||
"License :: OSI Approved :: BSD License",
|
||||
"Natural Language :: English",
|
||||
"Operating System :: POSIX :: Linux",
|
||||
"Programming Language :: Python :: 3",
|
||||
"Programming Language :: Python :: 3.4",
|
||||
"Topic :: System :: Installation/Setup",
|
||||
]
|
||||
packages = [
|
||||
{ include = "onions" },
|
||||
]
|
||||
|
||||
[tool.poetry.scripts]
|
||||
onions = "onions:main"
|
||||
|
||||
[tool.poetry.dependencies]
|
||||
python = ">= 3.6.1, < 3.8"
|
||||
pytor = "^0.1.5"
|
||||
Jinja2 = "^2.10"
|
||||
pyentrypoint = "^0.5.2"
|
||||
|
||||
[tool.poetry.dev-dependencies]
|
||||
autopep8 = "^1.5.2"
|
||||
tox = "^3.15.0"
|
||||
cryptography = "^2.9.2"
|
||||
pylint = "^2.5.2"
|
||||
ptpython = "^3.0.2"
|
||||
black = "^19.10b0"
|
||||
pre-commit = "^2.3.0"
|
||||
pytest = "^5.4.2"
|
||||
pyfakefs = "^4.0.2"
|
||||
|
||||
[build-system]
|
||||
requires = ["poetry>=0.12"]
|
||||
build-backend = "poetry.masonry.api"
|
||||
Loading…
Add table
Add a link
Reference in a new issue