-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (62 loc) · 1.33 KB
/
pyproject.toml
File metadata and controls
68 lines (62 loc) · 1.33 KB
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
58
59
60
61
62
63
64
65
66
67
68
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "gfftk"
version = "26.2.12"
description = "GFFtk: genome annotation GFF3 tool kit"
readme = {file = "README.md", content-type = "text/markdown"}
authors = [
]
requires-python = ">=3.7.0"
dependencies = [
"natsort",
"numpy",
"requests",
"gb-io>=0.3.2"
]
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/gfftk"
Repository = "https://github.com/nextgenusfs/gfftk.git"
[project.scripts]
gfftk = "gfftk.__main__:main"
[tool.hatch.build]
include = [
"gfftk/*.py",
"gfftk/data/*",
"README.md",
"LICENSE.md"
]
exclude = [
"tests/*",
]
[tool.black]
line-length = 100
target-version = ['py38']
include = '\.pyi?$'
extend-exclude = '''/(\n # Directories
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.isort]
profile = "black"
line_length = 100