Skip to content

Commit 5fc8aa0

Browse files
committed
Setup main README file
--- + Add README in examples/ directory + Add __version__ import for the Python package
1 parent dc33164 commit 5fc8aa0

3 files changed

Lines changed: 31 additions & 0 deletions

File tree

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# icspacket
2+
3+
*Content will be added soon enough...*
4+
5+
## License
6+
7+
Distributed under the GNU General Public License (V3). See [License](LICENSE) for more information.

examples/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# icspacket Examples
2+
3+
This directory contains some scripts that can be used to interact with various
4+
systems.
5+
6+
*More details will be added in the future...*

src/icspacket/__init__.py

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# This file is part of icspacket.
2+
# Copyright (C) 2025-present MatrixEditor @ github
3+
#
4+
# This program is free software: you can redistribute it and/or modify
5+
# it under the terms of the GNU General Public License as published by
6+
# the Free Software Foundation, either version 3 of the License, or
7+
# (at your option) any later version.
8+
#
9+
# This program is distributed in the hope that it will be useful,
10+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12+
# GNU General Public License for more details.
13+
#
14+
# You should have received a copy of the GNU General Public License
15+
# along with this program. If not, see <https://www.gnu.org/licenses/>.
16+
17+
# just export only one version candidate
18+
from ._version import __version__

0 commit comments

Comments
 (0)