-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
95 lines (87 loc) · 2.35 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
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "labtasker"
version = "0.1.0"
description = "A task queue system for lab experiments"
authors = [{ name = "Your Name", email = "[email protected]" }]
license = { text = "MIT" }
readme = "README.md"
requires-python = ">=3.8.1,<4.0"
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"python-dotenv>=0.19.0",
"pymongo>=4.0.0",
"fastapi>=0.68.0",
"uvicorn>=0.15.0",
"click>=8.0.0",
"passlib>=1.7.0",
"antlr4-python3-runtime>=4.13.0",
"pydantic-settings>=2.7.0",
"httpx[socks]>=0.24.0",
"typer>=0.15.0",
"loguru>=0.7.0",
"ruamel.yaml>=0.18.0",
"pyyaml>=6.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"mongomock>=4.1.0",
"black>=24.0.0",
"isort>=5.12.0",
"mypy>=1.0.0",
"flake8>=6.0.0",
"pre-commit>=3.0.0",
"freezegun>=1.5.0",
"pytest-docker>=3.0.0",
"pytest-benchmark>=4.0.0",
"pytest-asyncio>=0.24.0",
"asgi-lifespan>=2.1.0",
"tox>=4.23.2",
"pytest-dependency>=0.6.0"
]
doc = [
"mkdocs-material>=9.0.0",
"mike>=1.1.2",
]
[project.urls]
Homepage = "https://github.com/yourusername/labtasker"
Documentation = "https://labtasker.readthedocs.io"
Repository = "https://github.com/yourusername/labtasker.git"
[project.scripts]
labtasker = "labtasker.__main__:app"
[tool.setuptools]
packages = ["labtasker"]
[tool.black]
line-length = 88
target-version = ['py38']
include = '\.pyi?$'
[tool.isort]
profile = "black"
multi_line_output = 3
line_length = 88
known_first_party = ["labtasker"]
sections = ["FUTURE", "STDLIB", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]
[tool.mypy]
python_version = "3.8"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
check_untyped_defs = true
ignore_missing_imports = true
show_error_codes = true
strict = true