Skip to content

Commit

Permalink
Remove unused dependency, add [all] extra
Browse files Browse the repository at this point in the history
  • Loading branch information
clbarnes committed Jan 9, 2024
1 parent 3a9bda0 commit 3e86f7c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ tqdm>=4.50.0
psutil>=5.4.3

#extra: extras
fuzzywuzzy[speedup]~=0.17.0
ujson~=1.35

#extra: stack
Expand Down
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import itertools
from setuptools import setup, find_packages
import re
from pathlib import Path
Expand All @@ -15,6 +16,7 @@
raise RuntimeError("Unable to find version string in %s." % (VERSIONFILE,))

install_requires, extras_require = parse_requirement_files(Path("requirements.txt"))
extras_require["all"] = list(set(itertools.chain.from_iterable(extras_require.values())))

setup(
name='python-catmaid',
Expand Down

0 comments on commit 3e86f7c

Please sign in to comment.