-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (30 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
37 lines (30 loc) · 1.04 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "goombay"
version = "0.24.10"
authors = [{ name = "Andrew Hennis", email = "andrew.mr.hennis@gmail.com" }]
description = "Python implementation of several local, global, and multiple sequence alignment algorithms intended to calculate distance, show alignment, and display the underlying matrices."
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = ["biobase>=0.8.0", "biopython>=1.85", "numpy>=2.2.6"]
[project.optional-dependencies]
dev = ["pytest", "black"]
[project.urls]
Homepage = "https://github.com/lignum-vitae/goombay"
Issues = "https://github.com/lignum-vitae/goombay/issues"
[tool.hatch.build.sources]
goombay = "goombay"
[tool.hatch.build]
include = ["goombay/**/*.py"]
[tool.hatch.build.targets.wheel]
packages = ["goombay"]
[tool.pytest.ini_options]
pythonpath = ["."]
testpaths = ["tests"]