first commit

This commit is contained in:
Gianmarco Pettinato 2022-05-26 23:17:22 +02:00
parent ea54dd300c
commit c3f8600bda
4 changed files with 42 additions and 0 deletions

3
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,3 @@
{
"python.formatting.provider": "yapf"
}

18
poetry.lock generated Normal file
View File

@ -0,0 +1,18 @@
[[package]]
name = "yapf"
version = "0.32.0"
description = "A formatter for Python code."
category = "dev"
optional = false
python-versions = "*"
[metadata]
lock-version = "1.1"
python-versions = "^3.9"
content-hash = "007777e8a8d98d16e1fed8845104ff0b4468e550de09e6422f2b21ca53c4b564"
[metadata.files]
yapf = [
{file = "yapf-0.32.0-py2.py3-none-any.whl", hash = "sha256:8fea849025584e486fd06d6ba2bed717f396080fd3cc236ba10cb97c4c51cf32"},
{file = "yapf-0.32.0.tar.gz", hash = "sha256:a3f5085d37ef7e3e004c4ba9f9b3e40c54ff1901cd111f05145ae313a7c67d1b"},
]

16
pyproject.toml Normal file
View File

@ -0,0 +1,16 @@
[tool.poetry]
name = "aliperme"
version = "0.1.0"
description = "A simple scraper"
authors = ["Gianmarco Pettinato <gianmarco@pettinato.eu>"]
license = "Private"
[tool.poetry.dependencies]
python = "^3.9"
[tool.poetry.dev-dependencies]
yapf = "^0.32.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"

5
src/main.py Normal file
View File

@ -0,0 +1,5 @@
def main():
print('Ciao')
if __name__ == "__main__":
main()