We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0bbf00 commit baebe5cCopy full SHA for baebe5c
.github/workflows/python-publish.yml
@@ -25,7 +25,7 @@ jobs:
25
- name: Set up Python
26
uses: actions/setup-python@v3
27
with:
28
- python-version: '3.x'
+ python-version: '>=3.8'
29
- name: Install dependencies
30
run: |
31
python -m pip install --upgrade pip
.gitignore
@@ -3,7 +3,8 @@
3
**/*.pyc
4
**/__pycache__
5
**/test.py
6
-snapsort.egg-info
7
.DS_Store
8
dist
9
-snap_sort/models
+snap_sort/models
+build
10
+snap_sort.egg-info/
setup.py
@@ -1,7 +1,7 @@
1
from setuptools import setup, find_packages
2
setup(
- name='snap-sort',
+ name='cli-snapsort',
version='0.1.1',
packages=find_packages(),
install_requires=[
0 commit comments