forked from rfm-targa/proBait
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (46 loc) · 1.3 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
48
49
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "proBait"
version = "0.1.0"
requires-python = ">=3.11"
dependencies = [
"biopython>=1.83",
"plotly>=5.22.0",
"pandas>=1.5.3",
"datapane>=0.17.0",
]
authors = [
{name = "Rafael Mamede"},
{name = "Mário Ramirez"}
]
maintainers = [
{name = "UMMI", email = "[email protected]"}
]
description = "Generate target-enrichment probes from a set of genome assemblies."
readme = "README.md"
license = {file = "LICENSE"}
keywords = [
"bioinformatics",
"genomics",
"target capture",
"target-enrichment",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: Unix",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
[project.scripts]
"proBait" = "proBait.proBait:parse_arguments"
[project.urls]
Repository = "https://github.com/B-UMMI/proBait"
#Documentation = ""
Changelog = "https://github.com/B-UMMI/proBait/blob/master/CHANGELOG.md"