Skip to content

Commit 8513f20

Browse files
committed
Initial commit
0 parents  commit 8513f20

File tree

7 files changed

+728
-0
lines changed

7 files changed

+728
-0
lines changed

.gitignore

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
.venv*
2+
dist
3+
*.egg-info
4+
build
5+
.vscode
6+
.idea
7+
__pycache__
8+
9+
# pytest-cov
10+
.coverage*
11+
coverage.xml

LICENSE

Lines changed: 675 additions & 0 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# SIO3Pack

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[build-system]
2+
requires = ["setuptools>=67.0"]
3+
build-backend = "setuptools.build_meta"

setup.cfg

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
[metadata]
2+
name = sio3pack
3+
version = attr: sio3pack.__version__
4+
author = Tomasz Kwiatkowski, Mateusz Masiarz, Jakub Rożek, Stanisław Struzik
5+
6+
maintainer = Tomasz Kwiatkowski, Mateusz Masiarz, Jakub Rożek, Stanisław Struzik
7+
8+
description = Library for interacting with packages
9+
long_description = file: README.md
10+
long_description_content_type = text/markdown
11+
project_urls =
12+
Bug Tracker = https://github.com/sio2project/SIO3Pack/issues
13+
Homepage = https://github.com/sio2project/SIO3Pack
14+
classifiers =
15+
Programming Language :: Python :: 3
16+
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
17+
Operating System :: OS Independent
18+
19+
[options]
20+
packages = find_namespace:
21+
packages_dir = src
22+
include_package_data = True
23+
python_requires = >=3.9
24+
install_requires =
25+
26+
[options.packages.find]
27+
where = src
28+
29+
[options.extras_require]
30+
tests =
31+
pytest
32+
pytest-cov
33+
pytest-xdist
34+
35+
[tool:pytest]
36+
testpaths =
37+
tests

src/sio3pack/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
__version__ = "0.0.1"

tests/.gitkeep

Whitespace-only changes.

0 commit comments

Comments
 (0)