-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
58 lines (48 loc) · 1.61 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
# SPDX-License-Identifier: Apache-2.0
# Copyright 2022 The Foundry Visionmongers Ltd
[project]
name = "openassetio-manager-bal"
version = "1.0.0b1.rev0"
requires-python = ">=3.10"
dependencies = ["openassetio>=1.0.0b2.rev2", "openassetio-mediacreation>=1.0.0a9"]
authors = [
{ name = "Contributors to the OpenAssetIO project", email = "[email protected]" }
]
description = """\
A contrived "asset management system" for OpenAssetIO integration test cases.\
"""
keywords = ["openassetio", "manager"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3"
]
readme = "README.md"
[project.urls]
OpenAssetIO = "https://github.com/OpenAssetIO/OpenAssetIO"
Source = "https://github.com/OpenAssetIO/OpenAssetIO-Manager-BAL"
Issues = "https://github.com/OpenAssetIO/OpenAssetIO-Manager-BAL/issues"
# Defines a Python entry point that exposes the plugin's package to
# allow entry point based discovery.
[project.entry-points."openassetio.manager_plugin"]
plugin_package_or_module = "openassetio_manager_bal"
[build-system]
requires = [
"setuptools>=65.5.0"
]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where =["plugin"]
[tool.pylint.format]
max-line-length = 99
[tool.black]
line-length = 99
# NB: This requires the use of pyproject-flake8
[tool.flake8]
max-line-length = 99
extend-ignore = "E266,"