forked from nasa/fprime
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
45 lines (44 loc) · 1.62 KB
/
setup.py
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
#!/usr/bin/env python
####
# fprime Python Package:
#
# A meta-package that pulls in the other fprime packages (fprime-fpp, fprime-tools, fprime-gds) into the user's
# environment. This makes installing a tested/compatible stack of tools easy.
###
from setuptools import setup
setup(
name="fprime",
use_scm_version={"root": ".", "relative_to": __file__},
license="Apache 2.0 License",
description="fprime meta-package",
long_description="""
This package includes fixed versions of the other fprime packages such that a compatible set of tool versions are
installed. These other tools include: fprime-tools, fprime-fpp, fprime-gds.
""",
url="https://github.com/nasa/fprime",
keywords=["fprime", "embedded", "nasa"],
project_urls={"Issue Tracker": "https://github.com/nasa/fprime/issues"},
author="Michael Starch",
author_email="[email protected]",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: MacOS",
"Operating System :: Unix",
"Operating System :: POSIX",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
py_modules=[],
python_requires=">=3.7",
install_requires=[
"fprime-tools>=v3.1.0a2",
"fprime-gds>=v3.1.0a2",
"fprime-fpp>=v1.0.2b12",
],
)