-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (53 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
63 lines (53 loc) · 1.06 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "app_pass"
version = "0.2.2"
authors = [
{name = "Dominik Kutra", email = "dominik.kutra@embl.de"}
]
maintainers = [
{name = "Dominik Kutra", email = "dominik.kutra@embl.de"},
{name = "ilastik team", email = "team@ilastik.org"},
]
description = "Tool to ensure an .app bundle pass the Gatekeeper on MacOS."
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
classifiers = [
"Programming Language :: Python :: 3",
"Environment :: MacOS X",
]
requires-python = ">=3.10"
dependencies = [
"lxml",
"packaging",
"rich",
]
[project.optional-dependencies]
test = [
"pytest"
]
[project.urls]
Homepage = "https://github.com/ilastik/app-pass"
Issues = "https://github.com/ilastik/app-pass/issues"
[project.scripts]
app-pass = "app_pass.__main__:main"
[tool.black]
line-length = 120
target-version = ['py310']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs
| \.git
| \.mypy_cache
| \.tox
| _build
| build
| dist
)/
)
'''