Skip to content

Commit cb2bc44

Browse files
committed
pyproject.toml file
1 parent 1797422 commit cb2bc44

File tree

4 files changed

+26
-89
lines changed

4 files changed

+26
-89
lines changed

.github/workflows/python-publish.yml

Lines changed: 0 additions & 47 deletions
This file was deleted.

.github/workflows/release.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,7 @@ jobs:
8181
run: |
8282
curl -sSL https://install.python-poetry.org | python3 -
8383
echo "$HOME/.local/bin" >> $GITHUB_PATH
84-
poetry convert-setup-py
85-
84+
8685
- name: Set project version with Poetry
8786
run: |
8887
poetry version ${{ needs.details.outputs.new_version }}

pyproject.toml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
[tool.poetry]
2+
name = "chordspy"
3+
version = "0.1.0"
4+
description = "An open source bag of tools for recording and visualizing Bio-potential signals like EEG, ECG, EMG, or EOG."
5+
authors = ["Upside Down Labs <[email protected]>"]
6+
readme = "README.md"
7+
license = "MIT"
8+
homepage = "https://github.com/upsidedownlabs/Chords-Python"
9+
packages = [{include = "chordspy"}]
10+
include = ["chordspy/config/*.yaml", "chordspy/static/*", "chordspy/templates/*", "chordspy/apps/*.py"]
11+
12+
[tool.poetry.dependencies]
13+
python = ">=3.9"
14+
# Add your requirements.txt dependencies here
15+
# (Poetry will automatically include them if you used poetry convert-setup-py)
16+
17+
[tool.poetry.scripts]
18+
chordspy = "chordspy.app:main"
19+
20+
[tool.poetry.urls]
21+
Homepage = "https://github.com/upsidedownlabs/Chords-Python"
22+
23+
[build-system]
24+
requires = ["poetry-core>=1.0.0"]
25+
build-backend = "poetry.core.masonry.api"

setup.py

Lines changed: 0 additions & 40 deletions
This file was deleted.

0 commit comments

Comments
 (0)