-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
60 lines (54 loc) · 1.42 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
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
module = "koza"
author = "The Monarch Initiative"
author-email = "[email protected]"
home-page = "https://github.com/monarch-initiative/koza"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Operating System :: POSIX :: Linux",
]
requires = [
"kgx >= 1.0.0",
"pydantic >=1.0.0,<2.0.0",
"pyyaml >=5.3.1,<6.0.0",
"requests >=2.24.0,<3.0.0",
"typer >=0.3",
]
description-file = "README.md"
requires-python = ">=3.7"
[tool.flit.metadata.urls]
Documentation = "https://github.com/monarch-initiative/koza"
[tool.flit.metadata.requires-extra]
test = [
"pytest >=6.0.0",
]
doc = [
"mkdocs >=1.1.2,<2.0.0",
]
dev = [
"biolink-model-pydantic >=0.1.1,<1.0.0",
"autoflake >=1.3.1,<2.0.0",
"flake8 >=3.8.3,<4.0.0",
"black ==20.8b1",
"isort >=5.0.6,<6.0.0",
]
[tool.flit.scripts]
koza = "koza:main.typer_app"
[tool.black]
line_length = 100
skip-string-normalization = true
[tool.isort]
profile = "black"
line_length = 100
multi_line_output = 3
include_trailing_comma = true