migrated to poetry dependency management
This commit is contained in:
parent
c54ecda60d
commit
bbcbbc7890
1
.gitignore
vendored
1
.gitignore
vendored
@ -4,5 +4,6 @@ __pycache__
|
||||
.idea
|
||||
.spot
|
||||
data
|
||||
poetry.lock
|
||||
|
||||
scratch.py
|
19
pyproject.toml
Normal file
19
pyproject.toml
Normal 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"
|
@ -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
|
Loading…
Reference in New Issue
Block a user