Use poetry instead of setup.py

This commit is contained in:
Sumner Evans
2020-10-15 00:16:05 -06:00
parent e0b4cfeed1
commit b61acffa0d
8 changed files with 42 additions and 99 deletions

View File

@@ -22,7 +22,7 @@ lint:
before_script:
- ./cicd/install-project-deps.sh
script:
- poetry run python setup.py check -mrs
- poetry check
- poetry run black --check .
- poetry run flake8
- poetry run mypy sublime_music tests/**/*.py
@@ -47,7 +47,7 @@ build:
before_script:
- ./cicd/install-project-deps.sh
script:
- poetry run python setup.py sdist
- poetry build
artifacts:
paths:
- dist/*