-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
44 lines (34 loc) · 967 Bytes
/
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
[project]
name = "alv"
authors = [
{name = "Lars Arvestad", email = "[email protected]"}
]
maintainers = [
{name = "Lars Arvestad", email = "[email protected]"},
]
description = "A console-based sequence alignment viewer"
readme = "README.md"
license = {text = "GNU General Public License v3 (GPLv3)"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
dynamic = ["version"]
dependencies = [
"colorama>=0.3.8",
"biopython>=1.81",
]
requires-python = ">= 3.6"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project.scripts]
alv = "alv.main:main"
[project.urls]
homepage = "https://github.com/arvestad/alv"
[tool.setuptools]
packages = ["alv"]
[tool.setuptools.dynamic]
version = {attr = "alv.version.__version__"}