-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
43 lines (37 loc) · 932 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
38
39
40
41
42
43
[tool.poetry]
name = "cancer_data"
version = "0.3.6"
description = "Preprocessing for various cancer genomics datasets"
authors = ["Kevin Hu <kevinhuwest@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/kevinhu/cancer_data"
repository = "https://github.com/kevinhu/cancer_data"
keywords = ["cancer", "data", "genomics"]
include = ["LICENSE"]
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
gtfparse = "^2.5.0"
scipy = "^1.13.0"
requests = "^2.31.0"
tqdm = "^4.66.2"
tables = "^3.9.2"
xlrd = ">=2.0.1"
pandas = "^2.2.1"
[tool.poetry.dev-dependencies]
matplotlib = "^3.8.4"
seaborn = "^0.11.2"
jupyter = "^1.0.0"
black = "^24.3.0"
isort = "^5.13.2"
pylint = "^3.1.0"
poethepoet = "^0.10.0"
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 88
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"