Skip to content

Commit

Permalink
change poetry from setuptools to build home in meta.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
akikuno committed Sep 2, 2023
1 parent 6243c3e commit 68c29ff
Showing 1 changed file with 12 additions and 17 deletions.
29 changes: 12 additions & 17 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"

[project]
[tool.poetry]
name = "cstag"
version = "0.5.1"
version = "0.6.0"
description = "Python module to manipulate the minimap2's CS tag"
authors = [{ name = "Akihiro Kuno", email = "[email protected]" }]
requires-python = ">=3.7"
readme = { file = "README.md", content-type = "text/markdown" }
license = { file = "LICENSE" }

authors = ["Akihiro Kuno <[email protected]>"]
homepage = "https://github.com/akikuno/cstag"
repository = "https://github.com/akikuno/cstag"
documentation = "https://akikuno.github.io/cstag/cstag"
readme = "README.md"
license = "MIT"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
Expand All @@ -19,11 +20,5 @@ classifiers = [
"Topic :: Scientific/Engineering :: Bio-Informatics",
]

[project.urls]
homepage = "https://github.com/akikuno/cstag"
repository = "https://github.com/akikuno/cstag"
documentation = "https://akikuno.github.io/cstag/cstag"


[tool.setuptools]
packages.find = { where = ["src"] }
[tool.poetry.dependencies]
python = "^3.7"

0 comments on commit 68c29ff

Please sign in to comment.