-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
35 lines (28 loc) · 830 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
#build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["pyblish_manager"]
[project]
name = "pyblish-manager"
authors = [
{name = "Hannes D"},
]
description = "a qt widget to edit the active Pyblish environment"
readme = "docs/README.md"
requires-python = ">=3.4"
keywords = ["commands", "pipeline", "tool", "pyblish", "validation"]
#license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python :: 3.7",
]
#dynamic = ["dependencies"]
dependencies = ['importlib-metadata; python_version<"3.7"']
#dynamic = ["version"]
version = "0.0.1"
#[project.optional-dependencies]
#yaml = ["pyyaml"]
#[project.scripts]
#my-script = "my_package.module:function"
[project.urls]
Source = "https://github.com/hannesdelbeke/pyblish-manager"