Coverage for apio / __init__.py: 100%

9 statements  

« prev     ^ index     » next       coverage.py v7.13.3, created at 2026-02-08 02:47 +0000

1"""Open source ecosystem for open FPGA boards""" 

2 

3# -*- coding: utf-8 -*- 

4# -- This file is part of the Apio project 

5# -- (C) 2016-2019 FPGAwars 

6# -- Author Jesús Arroyo 

7# -- License GPLv2 

8 

9# -------------------------------------------- 

10# - Information for the Distribution package 

11# -------------------------------------------- 

12 

13 

14# -- DEVELOPER: 

15# -- Change this release number and date when releasing a new Apio CLI version. 

16# -- If incrementing Major or Minor, a new remote config file is required. 

17APIO_VERSION = (1, 3, 0) # Major, Minor, Patch. 

18 

19# -- This is set automatically during build or publishing information to 

20# -- provide additional information about the release. This string is included 

21# -- the 'apio --version' message. 

22RELEASE_INFO = "" 

23 

24# -- Get the version as a string. Ex: "0.10.1" 

25__version__ = ".".join([str(s) for s in APIO_VERSION]) 

26 

27__title__ = "apio" 

28__description__ = "Open source ecosystem for open FPGA boards" 

29__url__ = "https://github.com/FPGAwars/apio" 

30 

31__author__ = "Jesús Arroyo Torrens" 

32__email__ = "jesus.arroyo.torrens@gmail.com" 

33 

34__license__ = "GPLv2"