Skip to content

Commit

Permalink
migrate to pyproject and hatchling
Browse files Browse the repository at this point in the history
  • Loading branch information
Jon Palmer committed Nov 4, 2024
1 parent 42a571a commit 85bb74b
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 77 deletions.
45 changes: 45 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[project]
name = "buscolite"
version = "24.7.29"
description = "busco analysis for gene predictions"
readme = {file = "README.md", content-type = "text/markdown"}
authors = [
{name = "Jon Palmer", email = "[email protected]"}
]
requires-python = ">=3.6.0"
dependencies = [
"natsort",
"pyhmmer>=0.10.15",
"pyfastx>=2.0.0",
]
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Operating System :: Unix",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
keywords = ["bioinformatics", "genome", "annotation", "completeness"]

[project.urls]
Homepage = "https://github.com/nextgenusfs/buscolite"
Repository = "https://github.com/nextgenusfs/buscolitegit"

[project.scripts]
buscolite = "buscolite.__main__:main"

[tool.hatch.build.targets.sdist]
include = [
"bucolite/data/*",
"README.md",
"LICENSE.md"
]
exclude = [
"tests/*",
]
77 changes: 0 additions & 77 deletions setup.py

This file was deleted.

0 comments on commit 85bb74b

Please sign in to comment.