-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
68 lines (62 loc) · 1.3 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "brick"
version = "0.4.0"
authors = [{name="Eike Steinig", email="[email protected]"}]
description = "BRICK implements BRIG-like interactive figures in D3 for bacterial genome visualization, annotation, comparison and exploration using a Python scripting API, CLI, REST API or UI."
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"typer==0.9.0",
"biopython==1.83",
"pandas==2.1.4",
"requests==2.31.0",
"pre-commit==3.6.0",
"fastapi==0.109.0",
"redis==5.0.1",
"celery[redis]==5.3.6",
"uvicorn==0.25.0",
"pydantic-settings==2.1.0",
"python-multipart==0.0.6",
"motor==3.3.2",
"pytest==7.4.4",
"pytest-asyncio==0.23.3",
"httpx==0.26.0",
"asgi-lifespan==2.1.0",
"apscheduler==3.10.4",
"strenum==0.4.15"
]
[tool.setuptools.packages.find]
where = ["."]
include = ["brick*"]
namespaces = false
[project.scripts]
brick = "brick.terminal:app"
[tool.pytest.ini_options]
testpaths = [
"tests/api_tests",
"tests/core_tests",
]
addopts = "-v"
[tool.black]
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| \.github
| \.secrets
| _build
| buck-out
| build
| dist
| app
| docker
| scripts
)/
'''