Coverage for apio/__init__.py: 100%

3 statements  

« prev     ^ index     » next       coverage.py v7.16.1, created at 2026-09-23 03:53 +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, 7, 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__ = "GPLv3+"