Skip to content

Commit

Permalink
add setuptools to dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
DavyCats committed Sep 5, 2024
1 parent cc93ea4 commit 939e518
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
miniwdl>=1.0
jinja2
jinja2
setuptools
7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
LONG_DESCRIPTION = readme_file.read()

setup(name="WDL-AID",
version="1.1.0-dev",
version="1.0.1-dev",
description="Automatic Input Documentation for WDL workflows",
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
Expand All @@ -36,6 +36,8 @@
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
],
Expand All @@ -49,7 +51,8 @@
package_data={'': ["*.j2"]},
install_requires=[
"miniwdl>=1.0",
"jinja2"
"jinja2",
"setuptools"
],
entry_points={
"console_scripts":
Expand Down
8 changes: 4 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[tox]
envlist = py37,py38,py39,py310
envlist = py39,py310,py311,py312

[gh-actions]
python =
3.7: py37
3.8: py38
3.9: py39
3.10: py310
3.11: py311
3.12: py312

[testenv]
deps =
Expand All @@ -19,4 +19,4 @@ commands =

[testenv:py3-lint]
deps = flake8
commands = flake8 src/
commands = flake8 src/

0 comments on commit 939e518

Please # to comment.