-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
47 lines (37 loc) · 1011 Bytes
/
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
# SPDX-License-Identifier: BSD-3-Clause
# Copyright 2023 The Foundry Visionmongers Ltd
[project]
name = "my_asset_manager"
version = "1.0.0"
requires-python = ">=3.10"
dependencies = [
"openassetio>=1.0.0b1.rev0",
"openassetio-mediacreation >= 1.0.0a9"
]
authors = [
{ name = "MyName", email = "[email protected]" }
]
description = """\
An openassetio compliant asset manager implemented in python\
"""
keywords = ["openassetio", "manager"]
readme = "README.md"
# 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 = "my_asset_manager"
[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,"