-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
57 lines (53 loc) · 1.32 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
47
48
49
50
51
52
53
54
55
56
57
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "funannotate2"
version = "24.11.02"
description = "Funannotate2: eukarytoic genome annotation pipeline"
readme = {file = "README.md", content-type = "text/markdown"}
authors = [
{name = "Jon Palmer", email = "nextgenusfs@gmail.com"}
]
requires-python = ">=3.7.0"
dependencies = [
"natsort",
"numpy",
"mappy",
"gfftk>=24.10.29",
"buscolite>=24.7.29",
"gapmm2",
"pyhmmer>=0.10.15",
"pyfastx>=2.0.0",
"requests",
"gb-io>=0.3.2",
"json-repair",
"pytantan"
]
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"]
[project.urls]
Homepage = "https://github.com/nextgenusfs/funannotate2"
Repository = "https://github.com/nextgenusfs/funannotate2.git"
[project.scripts]
funannotate2 = "funannotate2.__main__:main"
[tool.hatch.build]
include = [
"funannotate2/*.py",
"funannotate2/downloads.json",
"funannotate2/resources/*",
"README.md",
"LICENSE.md"
]
exclude = [
"tests/*",
"local_tests/*"
]