-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (27 loc) · 908 Bytes
/
pyproject.toml
File metadata and controls
31 lines (27 loc) · 908 Bytes
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
[project]
name = "relview"
authors = [
{name = "David Aguilar", email = "davvid@gmail.com"},
{name = "Ryan Kawahara", email = "ryan.kawahara@gmail.com"},
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
]
description = "A viewer for USD relationships"
dynamic = ["dependencies", "optional-dependencies", "version"]
license = {file = "LICENSE.txt"}
readme = {file = "README.md", content-type = "text/markdown"}
[project.scripts]
relview = "relview.main:main"
[build-system]
requires = ["setuptools>=42", "setuptools_scm[toml]>=3.4.1"]
build-backend = "setuptools.build_meta"
[tool.cercis]
function-definition-extra-indent = false
line-length = 88
[tool.setuptools_scm]
fallback_version = "0.1.0"