-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
71 lines (61 loc) · 1.49 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[tool.poetry]
name = "geneeval"
version = "0.1.0-alpha.0"
description = "A Python library for benchmarking gene function prediction."
license = "Apache-2.0"
authors = ["johngiorgi <[email protected]>", "duncanforster <[email protected]>"]
readme = "README.md"
repository = "https://github.com/BaderLab/GeneEval"
classifiers = [
"Development Status :: 1 - Planning",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Typing :: Typed",
]
[tool.poetry.dependencies]
python = "^3.8"
overrides = "^3.1.0"
pandas = "^1.1.0"
typer = "^0.3.2"
orjson = "^3.4.1"
torch = { version = "^1.6.0", optional = true }
skorch = { version = "^0.9.0", optional = true }
requests = "^2.24.0"
urllib3 = "^1.25.11"
scikit-multilearn = "^0.2.0"
[tool.poetry.extras]
features = ["torch", "skorch"]
[tool.poetry.dev-dependencies]
black = "^20.8b1"
flake8 = "^3.8.4"
hypothesis = "^5.38.1"
pytest = "^6.1.1"
pytest-cov = "^2.10.0"
coverage = "^5.2.1"
codecov = "^2.1.8"
ipython = "^7.18.1"
fastaparser = "^1.1"
[tool.poetry.scripts]
geneeval = "geneeval.main:app"
[tool.black]
line-length = 100
include = '\.pyi?$'
exclude = '''
(
__pycache__
| \btutorials\b
| \bbuild\b
| \.git
| \.mypy_cache
| \.pytest_cache
| \.vscode
| \.venv
| \bdist\b
| \bdoc\b
)
'''
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"