-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (31 loc) · 857 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
# pyproject.toml
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools",
"wheel",
"setuptools-git-versioning<2",
]
[project]
name = "PrimerDesigner"
authors = [
{name = "Demetri Patrinos", email = "patrinosd25@mail.wlu.edu "},
]
description = "A tool for creating sequences to use for designing primers to target exon-exon splice junctions in mRatBN7.2 RNA-seq data"
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
keywords = ["primers", "RNA-Seq", "splice", "junction"]
dependencies = [
"pandas>=1.4",
"fastaparser>=1.1",
]
dynamic = ["version"]
[project.scripts]
primerdesigner = "primerdesigner.primerdesigner:main"
[tool.setuptools-git-versioning]
enabled = true
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
primerdesigner = ["data/*"]