-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
62 lines (54 loc) · 1.84 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[build-system]
requires = ["setuptools", "setuptools_scm[toml]>=6.2", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "fprime-fppm"
dynamic = ["version"]
description = "A package manager for F Prime"
readme = "README.md"
requires-python = ">=3.8"
keywords = ["fprime", "fppm", "nasa", "package", "flight software"]
authors = [
{name = "Ali Mosallaei", email = "Ali.Mosallaei@jpl.nasa.gov"},
{name = "Michael Starch", email = "Michael.D.Starch@jpl.nasa.gov"},
{name = "Thomas Boyer-Chammard", email = "Thomas.Boyer.Chammard@jpl.nasa.gov"},
]
dependencies = [
"pyyaml>=6.0.0",
"cookiecutter>=2.2.3",
"validators>=0.28.3",
]
[project.optional-dependencies]
test = [
"pytest",
"black"
]
[project.urls]
Homepage = "https://fprime.jpl.nasa.gov"
Documentation = "https://github.com/mosa11aei/fprime-fppm/tree/devel/docs"
Repository = "https://github.com/mosa11aei/fprime-fppm"
####
# Entry Points:
#
# Defines the list of entry-level (scripts) that are defined by this package. This allows
# standard use of utilities that ship as part of F prime.
####
[project.scripts]
fppm = "fppm.cli.__main__:main"
####
# setuptools_scm dynamically generates version number from git, as well as automatically
# include all data files tracked by git (e.g. cookiecutter templates).
# See https://setuptools.pypa.io/en/latest/userguide/datafiles.html
####
[tool.setuptools_scm]
####
# Additional notes
#
# With regards to the configuration of the older versions of setup.py:
# - package_data: included by default, and setuptools_scm will automatically include all files tracked by git
# - package discovery (src/): setuptools will automatically discover all packages as we use the src-layout
#
# Reference:
# - https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html
# - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html#src-layout
####