pull/72/head
msramalho 2023-02-07 22:28:44 +00:00
rodzic 3acb1b5f64
commit 277d15687c
2 zmienionych plików z 9 dodań i 3 usunięć

Wyświetl plik

@ -28,10 +28,12 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade --upgrade-strategy=eager pip setuptools wheel twine

4
setup.py 100644
Wyświetl plik

@ -0,0 +1,4 @@
from setuptools import setup
if __name__ == "__main__":
setup()