-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #115 from cokelaer/main
Update to be poetry2 compatible.
- Loading branch information
Showing
5 changed files
with
60 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,13 @@ | ||
[build-system] | ||
requires = ["poetry-core>=1.0.0"] | ||
requires = ["poetry-core>=2.0.0"] | ||
build-backend = "poetry.core.masonry.api" | ||
|
||
|
||
#maintainer ?#maintainer email | ||
[tool.poetry] | ||
[project] | ||
name = "sequana_pipetools" | ||
version = "1.1.1" | ||
version = "1.2.0" | ||
description = "A set of tools to help building or using Sequana pipelines" | ||
authors = ["Sequana Team"] | ||
authors = [{name="Sequana Team", email="[email protected]"}] | ||
license = "BSD-3" | ||
repository = "https://github.com/sequana/sequana_pipetools" | ||
readme = "README.rst" | ||
|
@@ -21,7 +20,6 @@ classifiers = [ | |
"Intended Audience :: Science/Research", | ||
"License :: OSI Approved :: BSD License", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
|
@@ -33,28 +31,28 @@ classifiers = [ | |
packages = [ | ||
{ include = "sequana_pipetools" } | ||
] | ||
requires-python = ">=3.8,<4.0" | ||
dependencies = [ | ||
"easydev >=0.12", | ||
"parse >=1.19.0", | ||
"ruamel.yaml >=0.18.5", | ||
"packaging >=23.1", | ||
"pykwalify >=1.8", | ||
"importlib_resources >=5.4.0", | ||
"pyyaml >=1.3", | ||
"aiohttp >=3.8.4", | ||
"tqdm >=4.65", | ||
"charset-normalizer >=2", | ||
"rich-click >=1.7.1", | ||
"cookiecutter >=2.6.0", | ||
"docutils (>0.20,!=0.21)", | ||
"versionix (>=0.99.2,<0.100.0)" | ||
] | ||
|
||
[tool.poetry.dependencies] | ||
python = ">=3.8,<4.0" | ||
easydev = ">=0.12" | ||
parse = ">=1.19.0" | ||
"ruamel.yaml" = ">=0.18.5" | ||
packaging = ">=23.1" | ||
pykwalify = ">=1.8" | ||
importlib_resources = ">=5.4.0" | ||
pyyaml = ">=1.3" | ||
aiohttp = ">=3.8.4" | ||
tqdm = ">=4.65" | ||
charset-normalizer = ">=2" | ||
versionix = ">=0.2.0" | ||
rich-click = "^1.7.1" | ||
docutils = "^0.20" | ||
cookiecutter = "^2.6.0" | ||
|
||
[tool.poetry.scripts] | ||
[project.scripts] | ||
sequana_pipetools = "sequana_pipetools.scripts.main:main" | ||
|
||
|
||
[tool.poetry.group.dev.dependencies] | ||
black = "^23.7.0" | ||
pytest = "^8.0.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters