Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified .coverage
Binary file not shown.
55 changes: 55 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
# Ignore Python cache & bytecode
__pycache__/
*.pyc
*.pyo
*.pyd

# Ignore virtual environments
.venv/
venv/
env/

# Ignore build artifacts
build/
dist/
*.egg-info/

# Ignore test artifacts
.coverage
.pytest_cache/
htmlcov/

# Ignore logs & temp files
*.log
logs/
*.tmp
*.swp

# Ignore version control
.git/
.gitignore
.gitattributes

# Ignore OS-specific files
.DS_Store
Thumbs.db

# Ignore IDE/editor files
.vscode/
.idea/
*.iml

# Ignore Docker stuff that shouldn't go into the image
docker-compose*.yml
.dockerignore

# Ignore data that shouldn't go into image
data/
notebooks/
*.csv
*.json
*.npz
*.npy

# Ignore docs (unless you want them in image)
docs/
188 changes: 3 additions & 185 deletions poetry.lock

Large diffs are not rendered by default.

6 changes: 1 addition & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "change-me"
version = "0.0.1"
version = "0.1.0"
description = "A simple Python template"
authors = ["Tsmorz <tonysmoragiewicz@gmail.com>"]
readme = "README.md"
Expand All @@ -13,17 +13,13 @@ pytest = "^8.3.5"
pytest-cov = "^6.0.0"
loguru = "^0.7.3"
pre-commit = "^4.1.0"
scipy = "^1.15.2"
tqdm = "^4.67.1"
poetry-core = "^2.1.2"

[tool.poetry.group.dev.dependencies]
ruff = "^0.6.9"
mypy = "^1.11"
pytest = "^8.3"
pytest-cov = "^6.0"
pandas-stubs = "^2.2"
scipy-stubs = "^1.11"

[build-system]
requires = ["poetry-core"]
Expand Down
2 changes: 1 addition & 1 deletion src/change_me/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from loguru import logger

from change_me.definitions import DEFAULT_LOG_LEVEL, LogLevel
from change_me.config.definitions import DEFAULT_LOG_LEVEL, LogLevel
from change_me.utils import setup_logger


Expand Down
1 change: 1 addition & 0 deletions src/change_me/config/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
"""Sample doc string."""
File renamed without changes.
2 changes: 1 addition & 1 deletion src/change_me/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

from loguru import logger

from change_me.definitions import (
from change_me.config.definitions import (
DATE_FORMAT,
DEFAULT_LOG_FILENAME,
DEFAULT_LOG_LEVEL,
Expand Down
23 changes: 0 additions & 23 deletions tests/definitions_test.py

This file was deleted.

4 changes: 1 addition & 3 deletions tests/main_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,4 @@

def test_main():
"""Test the main function."""
result = main()

assert result is None
assert main() is None
2 changes: 1 addition & 1 deletion tests/utils_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from pathlib import Path
from tempfile import TemporaryDirectory

from change_me.definitions import LogLevel
from change_me.config.definitions import LogLevel
from change_me.utils import setup_logger


Expand Down