aboutsummaryrefslogtreecommitdiffstats
path: root/pyGHDL/__init__.py
diff options
context:
space:
mode:
authorPatrick Lehmann <Patrick.Lehmann@plc2.de>2021-12-12 14:46:00 +0100
committerPatrick Lehmann <Patrick.Lehmann@plc2.de>2021-12-12 14:50:05 +0100
commitb6dcce607c96ce751fc3bb9aef45848c94e0e71e (patch)
tree064ed86d6e2033ad7da2d70332b12a568cd86ae1 /pyGHDL/__init__.py
parent03836b00aeddca2fd73f078d7850dc58be632466 (diff)
downloadghdl-b6dcce607c96ce751fc3bb9aef45848c94e0e71e.tar.gz
ghdl-b6dcce607c96ce751fc3bb9aef45848c94e0e71e.tar.bz2
ghdl-b6dcce607c96ce751fc3bb9aef45848c94e0e71e.zip
Updated setup.py to use pyTooling.Packaging.
Diffstat (limited to 'pyGHDL/__init__.py')
-rw-r--r--pyGHDL/__init__.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/pyGHDL/__init__.py b/pyGHDL/__init__.py
index eb400e0f1..eb32f03b4 100644
--- a/pyGHDL/__init__.py
+++ b/pyGHDL/__init__.py
@@ -47,7 +47,13 @@ this is provided from a ``pyGHDL`` packages with four sub-packages:
* ``pyGHDL.lsp`` - A `language server protocol <https://en.wikipedia.org/wiki/Language_Server_Protocol>`__ (LSP)
written in Python. The implementation offers an HTTPS service that can be used e.g. by editors and IDEs supporting LSP.
"""
-from pydecor import export
+__author__ = "Tristan Gingold and contributors"
+__email__ = "tgingold@free.fr"
+__copyright__ = "2002-2021, Tristan Gingold and contributors"
+__license__ = "GNU General Public License v2"
+__version__ = "2.0.0-dev"
+
+from pyTooling.Decorators import export
@export