-
Notifications
You must be signed in to change notification settings - Fork 54
/
pyproject.toml
40 lines (31 loc) · 1.02 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
[build-system]
build-backend = "setuptools.build_meta"
requires = [ "setuptools>=45", "setuptools_scm[toml]>=6.2",]
[project]
classifiers = [ "Development Status :: 2 - Pre-Alpha", "Natural Language :: English", "Programming Language :: Python :: 3",]
description = "Python Qt node editor"
dynamic = [ "version", "readme", "dependencies", "optional-dependencies", "optional-dependencies",]
keywords = []
name = "qtpynodeeditor"
requires-python = ">=3.9"
[[project.authors]]
name = "Ken Lauer"
[options]
zip_safe = false
include_package_data = true
[project.license]
file = "LICENSE"
[tool.setuptools_scm]
write_to = "qtpynodeeditor/_version.py"
[tool.setuptools.packages.find]
where = [ ".",]
include = [ "qtpynodeeditor*",]
namespaces = false
[tool.setuptools.dynamic.readme]
file = "README.rst"
[tool.setuptools.dynamic.dependencies]
file = [ "requirements.txt",]
[tool.setuptools.dynamic.optional-dependencies.test]
file = "dev-requirements.txt"
[tool.setuptools.dynamic.optional-dependencies.doc]
file = "docs-requirements.txt"