-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
107 lines (92 loc) · 1.79 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "cg"
version = "64.5.11"
description = "Clinical Genomics command center"
authors = ["Clinical Genomics <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/Clinical-Genomics/cg"
repository = "https://github.com/Clinical-Genomics/cg"
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
]
include = [
"README.md",
"cg/**/*",
"tests/**/*"
]
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
# Database
alembic = "*"
SQLAlchemy = "*"
PyMySQL = "*"
# CLI
click = "*"
# Server
blinker = "*"
CacheControl = "*"
Flask-Admin = "*"
Flask-CORS = "*"
Flask-Dance = "*"
Flask = "*"
Flask-WTF = "*"
WTForms = "*"
google-auth = "*"
gunicorn = "*"
requests = "*"
werkzeug = "*"
# Utils
cachetools = "*"
cryptography = "*"
coloredlogs = "*"
Jinja2 = ">=3.1.3"
lxml = "*"
marshmallow = "*"
MarkupSafe = "*"
openpyxl = "*"
packaging = "*"
pandas = "*"
paramiko = "*"
petname = "*"
psutil = "*"
pydantic = "*"
python-dateutil = "*"
PyYAML = "*"
tabulate = "*"
typing_extensions = "*"
urllib3 = "*"
# Apps
genologics = "*"
housekeeper = ">=4.11.3"
pydantic-settings = "^2.3.3"
email-validator = "^2.2.0"
[tool.poetry.dev-dependencies]
coveralls = "*"
mock = "*"
pre-commit = "*"
pytest-cov = "*"
pytest-mock = "*"
pytest = "*"
ruff = "*"
pytest-xdist = "*"
[tool.poetry.scripts]
cg = "cg.cli.base:base"
# Configurations
[tool.black]
line-length = 100
[tool.isort]
profile = "black"
include_trailing_comma = "true"
line_length=100
multi_line_output=3
ensure_newline_before_comments = "true"
[tool.ruff]
line-length = 100
target-version = "py311"
exclude = ["alembic"]
ignore = ["E501"]