migrated to poetry dependency management

This commit is contained in:
andy 2021-01-27 01:44:16 +00:00
parent c54ecda60d
commit bbcbbc7890
3 changed files with 20 additions and 7 deletions

1
.gitignore vendored
View File

@ -4,5 +4,6 @@ __pycache__
.idea
.spot
data
poetry.lock
scratch.py

19
pyproject.toml Normal file
View File

@ -0,0 +1,19 @@
[tool.poetry]
name = "spotframework"
version = "1.0.0"
description = "Spotify HTTP wrapper library"
authors = ["andy <andy@sarsoo.xyz>"]
repository = "https://github.com/Sarsoo/spotframework"
[tool.poetry.dependencies]
python = "^3.8"
requests = "^2.24.0"
tabulate = "^0.8.7"
click = "^7.1.2"
[tool.poetry.dev-dependencies]
pylint = "2.5.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"

View File

@ -1,7 +0,0 @@
certifi==2020.6.20
chardet==3.0.4
click==7.1.2
idna==2.10
requests==2.24.0
tabulate==0.8.7
urllib3==1.25.9