diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..83dcafa --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1 @@ +include __info__.py \ No newline at end of file diff --git a/__info__.py b/__info__.py new file mode 100644 index 0000000..9f36dad --- /dev/null +++ b/__info__.py @@ -0,0 +1,28 @@ +#!/usr/bin/env python3 +# -*- encoding: utf-8 -*- +# vim: se ts=4 et syn=python: + +# created by: matteo.guadrini +# __info__ -- mkpl +# +# Copyright (C) 2022 Matteo Guadrini +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +"""Information variable used by modules on this package.""" + +__version__ = '0.0.1' +__author__ = 'Matteo Guadrini' +__email__ = 'matteo.guadrini@hotmail.it' +__homepage__ = 'https://github.com/MatteoGuadrini/mkpl'