Skip to content

Commit 399859c

Browse files
committed
toml configuration file added
1 parent 2a11885 commit 399859c

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

pyproject.toml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
[tool.poetry]
2+
name = "Oncogenator"
3+
version = "0.1.0"
4+
description = "A tool for post-annotation of genomic alterations, integrating data from OncoKB and Cancer Genome Interpreter."
5+
authors = ["Ilari Maarala"]
6+
license = "MIT"
7+
readme = "README.md"
8+
9+
[tool.poetry.dependencies]
10+
python = "^3.7"
11+
pandas = "^1.3"
12+
dask = "^2022.1"
13+
numpy = "^1.21"
14+
scipy = "^1.7"
15+
networkx = "^2.6"
16+
python-decouple = "^3.5"
17+
18+
[tool.poetry.dev-dependencies]
19+
pytest = "^6.2"
20+
21+
[build-system]
22+
requires = ["poetry-core>=1.0.0"]
23+
build-backend = "poetry.core.masonry.api"
24+
25+
[tool.poetry.scripts]
26+
oncogenator = "main:main"
27+
28+
[tool.poetry.urls]
29+
"Homepage" = "https://github.com/oncodash/oncogenator"
30+
"Bug Tracker" = "https://github.com/oncodash/oncogenator/issues"
31+
32+
[tool.poetry.classifiers]
33+
"Development Status" = "3 - Alpha"
34+
"Intended Audience" = "Science/Research"
35+
"License" = "MIT"
36+
"Programming Language" = "Python :: 3"
37+
"Topic" = "Annotation"
38+
39+
[tool.pytest.ini_options]
40+
testpaths = ["tests"]

0 commit comments

Comments
 (0)