mirror of
https://github.com/Death916/deathclock.git
synced 2026-04-10 03:04:40 -07:00
init
This commit is contained in:
commit
aa76d7f760
6 changed files with 40 additions and 0 deletions
0
README.rst
Normal file
0
README.rst
Normal file
1
deathclock/__init__.py
Normal file
1
deathclock/__init__.py
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
__version__ = '0.1.0'
|
||||||
19
deathclock/main.py
Normal file
19
deathclock/main.py
Normal file
|
|
@ -0,0 +1,19 @@
|
||||||
|
#deathclock
|
||||||
|
import time
|
||||||
|
|
||||||
|
def main():
|
||||||
|
|
||||||
|
class clock():
|
||||||
|
|
||||||
|
def alarm():
|
||||||
|
return
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class weather():
|
||||||
|
pass
|
||||||
|
|
||||||
|
class gui():
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
15
pyproject.toml
Normal file
15
pyproject.toml
Normal file
|
|
@ -0,0 +1,15 @@
|
||||||
|
[tool.poetry]
|
||||||
|
name = "deathclock"
|
||||||
|
version = "0.1.0"
|
||||||
|
description = ""
|
||||||
|
authors = ["Death916 <tavn1992@gmail.com>"]
|
||||||
|
|
||||||
|
[tool.poetry.dependencies]
|
||||||
|
python = "^3.9"
|
||||||
|
|
||||||
|
[tool.poetry.dev-dependencies]
|
||||||
|
pytest = "^5.2"
|
||||||
|
|
||||||
|
[build-system]
|
||||||
|
requires = ["poetry-core>=1.0.0"]
|
||||||
|
build-backend = "poetry.core.masonry.api"
|
||||||
0
tests/__init__.py
Normal file
0
tests/__init__.py
Normal file
5
tests/test_deathclock.py
Normal file
5
tests/test_deathclock.py
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
from deathclock import __version__
|
||||||
|
|
||||||
|
|
||||||
|
def test_version():
|
||||||
|
assert __version__ == '0.1.0'
|
||||||
Loading…
Add table
Add a link
Reference in a new issue