-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (44 loc) · 1.19 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "homologyviz"
version = "0.1.3"
authors = [
{name = "Ivan Munoz-Gutierrez", email = "[email protected]"},
]
maintainers = [
{name = "Ivan Munoz-Gutierrez", email = "[email protected]"},
]
description = "Make graphical representations of BLASTn alignments"
readme = "README.md"
license = { text = "BSD 3-Clause License" }
keywords = [
"DNA alignments", "BLASTn", "Graphical BLASTn alignments", "easyfig"
]
classifiers = [
"Programming Language :: Python",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
requires-python = ">=3.11"
dependencies = [
"bezier",
"biopython",
"dash",
"dash_ag_grid",
"dash-bootstrap-components",
"dash-iconify",
"dash-mantine_components",
"kaleido",
"matplotlib",
"plotly",
"pandas",
]
[project.urls]
Repository = "https://github.com/ivanmugu/msplotly.git"
[project.scripts]
hviz = "homologyviz.app:main"
homologyviz = "homologyviz.app:main"