-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (49 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
55 lines (49 loc) · 1.05 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
[build-system]
requires = ["hatchling >= 1.26"]
build-backend = "hatchling.build"
[project]
name = "hubcast"
version = "0.0.1"
dependencies = [
"aiohttp",
"aiojobs",
"cachetools",
"gidgethub",
"gidgetlab",
"repligit[aiohttp]",
"pyyaml",
]
authors = [
{ name = "Alec Scott" },
]
description = "An event driven synchronization application for bridging GitHub and GitLab."
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license = "Apache-2.0"
keywords = ["github", "gitlab", "mirroring", "ci"]
[project.urls]
Homepage = "https://github.com/llnl/hubcast"
Issues = "https://github.com/llnl/hubcast/issues"
[project.optional-dependencies]
# https://www.python-ldap.org/en/latest/installing.html#build-prerequisites
ldap = [
"python-ldap"
]
dev = [
"pytest",
"pytest-asyncio",
"pytest-mock"
]
[tool.pytest.ini_options]
pythonpath = [
"src"
]
[tool.ruff]
line-length = 88
exclude = ["spack"]
[tool.bandit]
exclude_dirs = []