forked from ArcInstitute/ScreenPro2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (30 loc) · 879 Bytes
/
pyproject.toml
File metadata and controls
35 lines (30 loc) · 879 Bytes
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
[tool.poetry]
name = "ScreenPro2"
description = "Flexible analysis of high-content CRISPR screening"
version = "0.6.1"
authors = [
"Abolfazl Arab <abolfazl.arab@ucsf.edu>",
"Nick Youngblut <nick.youngblut@arcinstitute.org>",
]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/ArcInstitute/ScreenPro2"
repository = "https://github.com/ArcInstitute/ScreenPro2"
keywords = ["CRISPR", "screening", "bioinformatics"]
packages = [
{ include = "screenpro" },
{ include = "pyproject.toml" },
]
dynamic = ["version"]
[tool.poetry.dependencies]
python = ">=3.9"
[tool.poetry.scripts]
screenpro = "screenpro.main:main"
[tool.poetry.group.test.dependencies]
pytest = "*"
tomli = "*"
[tool.poetry-dynamic-versioning]
enable = true
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
build-backend = "poetry.core.masonry.api"