-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (45 loc) · 1.15 KB
/
pyproject.toml
File metadata and controls
51 lines (45 loc) · 1.15 KB
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
[tool.poetry]
name = "dna-sequence-data-handling"
version = "0.1.0"
description = "Testing python libraries for bioinformatics"
authors = ["Javier Rico <jvirico@gmail.com>"]
license = "MIT License"
[tool.poetry.dependencies]
python = "^3.9"
biopython = "^1.79"
squiggle = {git = "https://github.com/Benjamin-Lee/squiggle.git"}
typer = "^0.6.1"
scikit-learn = "^1.1.2"
[tool.poetry.dev-dependencies]
isort = "^5.10.1"
flake8 = "^5.0.4"
mypy = "^0.971"
pytest = "^7.1.2"
black = "^22.6.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
target-version = ["py39"]
[tool.isort]
profile = "black"
line_length = 120
skip_gitignore = true
[tool.mypy]
python_version = 3.8
# uncomment if using (older) NumPy version
# plugins = "numpy.typing.mypy_plugin"
namespace_packages = true
ignore_missing_imports = true
show_error_codes = true
show_column_numbers = true
disallow_any_generics = true
disallow_incomplete_defs = true
disallow_untyped_defs = true
local_partial_types = true
follow_imports = "silent"
warn_redundant_casts = true
warn_unused_ignores = true
warn_unreachable = true
ignore_errors = false