Skip to content

Commit 19057d0

Browse files
committed
added setuptools to setup.py
1 parent de7580e commit 19057d0

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/python-package.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ jobs:
2424

2525
- name: Install dependencies
2626
run: |
27-
python -m pip install --upgrade pip setuptools
28-
pip install flake8
27+
python -m pip install --upgrade pip
28+
pip install flake8 setuptools
2929
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
3030
3131
- name: Install Budgitree

budgitree/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
Budgitree init.py
33
"""
44

5-
__version__ = "0.0.9"
5+
__version__ = "0.1.0"
66
__parent_dir__ = 'budgitree'
77
__test_tree__ = 'data/example_tree.tree'

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@
4141
python_requires=">=3.9",
4242
install_requires=["ete3 == 3.1.3",
4343
"biopython == 1.84",
44-
"six == 1.16.0"],
44+
"six == 1.16.0",
45+
"setuptools == 75.3.0"],
4546
extras_require={ # Optional
4647
"dev": ["pre-commit", "pipenv"],
4748
"test": ["pytest", "pytest-cov"],

0 commit comments

Comments
 (0)