-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jon Palmer
committed
Nov 4, 2024
1 parent
42a571a
commit 85bb74b
Showing
2 changed files
with
45 additions
and
77 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
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/*", | ||
] |