generated from rochacbruno/python-project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
33 lines (28 loc) · 795 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["project_name"]
[project]
name = "project_name"
authors = [
{name = "author_name"},
]
description = "run py commands from buttons generated from a config"
readme = "README.md"
requires-python = ">=3.4"
keywords = ["substance", "painter", "plugin"]
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python :: 3.7",
]
#dynamic = ["dependencies"]
dependencies = ['importlib-metadata; python_version<"3.7"']
#dynamic = ["version"]
version = "1.0.0"
#[project.optional-dependencies]
#yaml = ["pyyaml"]
#[project.scripts]
#my-script = "my_package.module:function"
[project.urls]
Source = "https://github.com/author_name/project_urlname"