-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
49 lines (42 loc) · 957 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
44
45
46
47
48
49
[tool.poetry]
name = "itolhelper"
version = "0.1.0"
description = ""
authors = ["illumination-k <[email protected]>"]
license = "MIT"
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
requests = "^2.27.1"
pydantic = "^1.9.1"
biopython = "^1.79"
[tool.poetry.dev-dependencies]
black = "^22.3.0"
isort = "^5.10.1"
mypy = "^0.950"
types-requests = "^2.27.27"
pytest = "^7.1.2"
[tool.poetry.scripts]
ih = "itolhelper.main:main"
[tool.mypy]
namespace_packages = true
[tool.black]
line-length = 100
exclude = '''
/(
# These would already be ignored by pants, but having them here allows for manually running Black if one so wishes.
| \.git
| \.mypy_cache
| dist
| \.pants\.d
| virtualenvs
# This file intentionally contains invalid syntax
# It trips black up.
| compilation_failure
)/
'''
[tool.isort]
profile = "black"
line_length = 100
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"