Skip to content

Commit db1dc36

Browse files
authored
Add files via upload
0 parents  commit db1dc36

7 files changed

+27
-0
lines changed

README.md

Whitespace-only changes.

dist/oddeven-0.1.0-py3-none-any.whl

1.12 KB
Binary file not shown.

dist/oddeven-0.1.0.tar.gz

750 Bytes
Binary file not shown.

oddeven/__init__.py

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
def my_function(arg1, arg2):
2+
"""
3+
This is a simple function that takes two arguments and returns their sum.
4+
"""
5+
return arg1 + arg2

poetry.lock

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
[tool.poetry]
2+
name = "oddeven"
3+
version = "0.1.0"
4+
description = ""
5+
authors = ["taher davoodi<[email protected]>"]
6+
readme = "README.md"
7+
8+
[tool.poetry.dependencies]
9+
python = "^3.9"
10+
11+
12+
[build-system]
13+
requires = ["poetry-core"]
14+
build-backend = "poetry.core.masonry.api"
15+

tests/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)