-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (42 loc) · 1.09 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "buscolite"
version = "24.11.03"
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.md"}
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]
include = [
"buscolite/*.py",
"buscolite/data/*",
"README.md",
"LICENSE.md"
]
exclude = [
"tests/*",
]