generated from IRNAS/irnas-projects-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
36 lines (29 loc) · 1016 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
[build-system]
requires = ["setuptools>=64.0.0", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools-git-versioning]
enabled = true
[project]
name = "east-tool"
description="Tool built on top of West for managing nRF Connect SDK projects."
readme = "README.md"
dynamic = ["version", "dependencies", "optional-dependencies"]
authors = [{ name = "Marko Sagadin", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
requires-python = ">=3.8"
[project.urls]
Homepage = "https://github.com/IRNAS/irnas-east-software"
[project.scripts]
east = "east.__main__:main"
[tool.setuptools.dynamic]
dependencies = {file = ["scripts/requirements.txt"]}
optional-dependencies.dev = {file = ["scripts/requirements-dev.txt"]}
[tool.setuptools_scm]
version_scheme = "post-release"
# Can be empty, just having section will enable scm
[tool.setuptools.packages.find]
where = ["src"]