-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (35 loc) · 998 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
37
38
39
40
41
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "fprime-native-images"
authors = [
{name = "Michael Starch", email = "[email protected]"},
]
description = "Package designed to help build native image packages"
readme = "README.md"
requires-python = ">=3.7"
keywords = ["fpp", "fprime", "embedded", "nasa"]
license = {text = "Apache 2.0 License"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
]
dependencies = [
"Jinja2>=2.11.3",
"build",
'importlib-metadata; python_version<"3.8"',
"setuptools_scm[toml]>=6.2"
]
dynamic = ["version"]
[project.scripts]
fprime-native-packager="fprime_native_images.__main__:main"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
namespaces = true
where = ["src"]
[tool.setuptools.package-data]
"fprime_native_images.templates" = ["*.j2"]
[tool.setuptools_scm]
root = "."