-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpyproject.toml
More file actions
100 lines (93 loc) · 1.63 KB
/
pyproject.toml
File metadata and controls
100 lines (93 loc) · 1.63 KB
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
[project]
name = "jf_agent"
version = "0.0.1"
description = "An agent that can run on-premise to download and send data to Jellyfish."
authors = [
{name = "jellyfish-oss", email = "oss@jellyfish.co"},
]
dependencies = [
"urllib3>=2.6.3",
"pyyaml>=4.21b",
"jira==3.10.5",
"tqdm>=4.66.2",
"stashy",
"dateparser",
"jsonstreams",
"psutil",
"python-gitlab",
"click~=8.0.4",
"requests>=2.31.0",
"python-dotenv>=1.0.0",
"structlog>=24.4.0",
"colorama>=0.4.6",
"jf-ingest==0.0.285",
]
requires-python = ">=3.13,<3.14"
readme = "README.md"
license = "MIT"
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = {find = {include = ["jf_agent*"]}}
[tool.isort]
profile = "black"
[tool.black]
line-length = 100
skip-string-normalization = true
target_version = ['py313']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| \.circleci
| \.cache
| _build
| buck-out
| build
| dist
| scripts
| conf
| docs
| frontend
)/
| \.bash_history$
| \.eslintrc$
| \.flake8$
| Brewfile$
| Pipfile$
| Pipfile\.lock$
| Dockerfile$
| Makefile$
| \.dockerignore
| .*/__pycache__/*
| .*/migrations/.*\.py
| \.md$
| \.ipynb$
| \.json$
| \.js$
| \.yml$
| \.yaml$
| \.toml$
| \.ini$
| \.txt$
)
'''
[[tool.uv.index]]
name = "pypi"
url = "https://pypi.org/simple"
default = true
[dependency-groups]
dev = [
"requests-mock",
"pytest>=7.4.0",
"black==26.3.1",
"isort==5.13.2",
"pre-commit>=3.6.0",
]