-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (58 loc) · 1.18 KB
/
pyproject.toml
File metadata and controls
65 lines (58 loc) · 1.18 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "gapmm2"
version = "25.8.12"
description = "gapmm2: gapped alignment using minimap2"
readme = "README.md"
authors = [
{name = "Jon Palmer", email = "nextgenusfs@gmail.com"},
]
license = {text = "BSD-2-Clause"}
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",
]
requires-python = ">=3.6.0"
dependencies = [
"mappy",
"edlib",
]
[project.urls]
Homepage = "https://github.com/nextgenusfs/gapmm2"
Repository = "https://github.com/nextgenusfs/gapmm2.git"
[project.scripts]
gapmm2 = "gapmm2.__main__:main"
[tool.hatch.build]
include = [
"gapmm2/*.py",
"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