Coverage for apio/__init__.py: 100%

8 statements  

« prev     ^ index     » next       coverage.py v7.11.0, created at 2025-11-06 10:20 +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# -- Developer: Change this number when releasing a new version 

14VERSION = (1, 0, 1) 

15 

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

17__version__ = ".".join([str(s) for s in VERSION]) 

18 

19__title__ = "apio" 

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

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

22 

23__author__ = "Jesús Arroyo Torrens" 

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

25 

26__license__ = "GPLv2"