-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (39 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
45 lines (39 loc) · 1.02 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
[project]
name = "assay_blast"
dynamic = ["version"]
authors = [
{name = "Tom Eulenfeld"},
{name = "Max Collatz"},
]
description = "AssayBLAST - for in silico analysis of PCR oligos"
license = "MIT"
classifiers = [
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Bio-Informatics"
]
keywords = [
"primer design", "BLAST"
]
requires-python = ">= 3.11"
dependencies = [
"rnajena-sugar",
]
[project.urls]
"Homepage" = "https://github.com/rnajena/AssayBLAST"
[project.scripts]
assay_blast = "assay_blast:main"
assay_analyze = "assay_analyze:main"
assay_test = "assay_test:main"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = {"" = "."}
[tool.setuptools.dynamic]
version = {attr = "assay_blast.__version__"}
[tool.coverage.run]
command_line = "-m assay_test"
source = ["assay_blast", "assay_analyze", "assay_test"]
patch = ["subprocess"]