Skip to content

Commit df06ee7

Browse files
committed
first commit
0 parents  commit df06ee7

7 files changed

Lines changed: 52 additions & 0 deletions

File tree

.gitignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
.DS_Store
2+
/.vscode
3+
/.idea
4+
dist/
5+
build/
6+
.venv/
7+
.coverage
8+
9+
*.pyc
10+
/htmlcov

CONTRIBUTING.md

Whitespace-only changes.

Changelog.md

Whitespace-only changes.

README.md

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

bmi/main.py

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
#!/usr/bin/env python3
2+
# -*- coding: utf-8 -*-
3+
4+
5+
"""
6+
Small Python Projects for Beginners
7+
Version: 1.0
8+
Python 3.10+
9+
Date created: July 16th, 2022
10+
Date modified: -
11+
"""
12+
13+
14+
import logging
15+
16+
logging.basicConfig(level=logging.DEBUG)
17+
logger = logging.getLogger()
18+
19+
20+
def main():
21+
pass
22+
23+
24+
if __name__ == '__main__':
25+
main()

pyproject.toml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
[tool.poetry]
2+
name = "small-python-projects"
3+
version = "0.1.0"
4+
description = "ten small Python projects for beginners"
5+
authors = ["Your Name <[email protected]>"]
6+
license = "MIT"
7+
8+
[tool.poetry.dependencies]
9+
python = "^3.10"
10+
11+
[tool.poetry.dev-dependencies]
12+
pytest = "^7.1.2"
13+
14+
[build-system]
15+
requires = ["poetry-core>=1.0.0"]
16+
build-backend = "poetry.core.masonry.api"

pytest.ini

Whitespace-only changes.

0 commit comments

Comments
 (0)