Skip to content

Commit

Permalink
🎉 v0.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
hglong16 committed Jun 1, 2023
1 parent db092f7 commit f44bab7
Show file tree
Hide file tree
Showing 8 changed files with 5 additions and 91 deletions.
8 changes: 3 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[project]
name = "execy"
version = "0.1.0"
description = "Add a short description here"
version = "0.1.7"
description = "The ececy exec_time decorator is a utility that measures the execution time of a function. It can be used to easily track and log the time taken by a function to execute, both for synchronous and asynchronous functions."
authors = [
{ name = "hglong16", email = "[email protected]" }
]
dependencies = ["pytest-asyncio~=0.21.0", "setuptools~=67.8.0", "wheel~=0.40.0", "twine~=4.0.2"]
dependencies = []
readme = "README.md"
requires-python = ">= 3.8"

Expand All @@ -14,8 +14,6 @@ requires = ["hatchling"]
build-backend = "hatchling.build"

[tool.rye.scripts]
build = "python setup.py sdist bdist_wheel"
upload = "twine upload dist/*"

[tool.rye]
managed = true
Expand Down
32 changes: 0 additions & 32 deletions requirements-dev.lock
Original file line number Diff line number Diff line change
Expand Up @@ -8,46 +8,14 @@

-e file:.
black==23.3.0
bleach==6.0.0
certifi==2023.5.7
cffi==1.15.1
charset-normalizer==3.1.0
click==8.1.3
cryptography==41.0.0
docutils==0.20.1
exceptiongroup==1.1.1
idna==3.4
importlib-metadata==6.6.0
iniconfig==2.0.0
isort==5.12.0
jaraco-classes==3.2.3
jeepney==0.8.0
keyring==23.13.1
markdown-it-py==2.2.0
mdurl==0.1.2
more-itertools==9.1.0
mypy-extensions==1.0.0
packaging==23.1
pathspec==0.11.1
pkginfo==1.9.6
platformdirs==3.5.1
pluggy==1.0.0
pycparser==2.21
pygments==2.15.1
pytest==7.3.1
pytest-asyncio==0.21.0
readme-renderer==37.3
requests==2.31.0
requests-toolbelt==1.0.0
rfc3986==2.0.0
rich==13.4.1
secretstorage==3.3.3
six==1.16.0
tomli==2.0.1
twine==4.0.2
urllib3==2.0.2
webencodings==0.5.1
wheel==0.40.0
zipp==3.15.0
# The following packages are considered to be unsafe in a requirements file:
setuptools==67.8.0
38 changes: 0 additions & 38 deletions requirements.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7,41 +7,3 @@
# all-features: false

-e file:.
bleach==6.0.0
certifi==2023.5.7
cffi==1.15.1
charset-normalizer==3.1.0
cryptography==41.0.0
docutils==0.20.1
exceptiongroup==1.1.1
idna==3.4
importlib-metadata==6.6.0
iniconfig==2.0.0
jaraco-classes==3.2.3
jeepney==0.8.0
keyring==23.13.1
markdown-it-py==2.2.0
mdurl==0.1.2
more-itertools==9.1.0
packaging==23.1
pkginfo==1.9.6
pluggy==1.0.0
pycparser==2.21
pygments==2.15.1
pytest==7.3.1
pytest-asyncio==0.21.0
readme-renderer==37.3
requests==2.31.0
requests-toolbelt==1.0.0
rfc3986==2.0.0
rich==13.4.1
secretstorage==3.3.3
six==1.16.0
tomli==2.0.1
twine==4.0.2
urllib3==2.0.2
webencodings==0.5.1
wheel==0.40.0
zipp==3.15.0
# The following packages are considered to be unsafe in a requirements file:
setuptools==67.8.0
15 changes: 0 additions & 15 deletions setup.py

This file was deleted.

Empty file removed src/exectime/__init__.py
Empty file.
1 change: 1 addition & 0 deletions src/execy/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from execy.exec import exec_time
File renamed without changes.
2 changes: 1 addition & 1 deletion tests/test_exec.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import time
import asyncio
import pytest
from exectime.exec import exec_time
from execy.exec import exec_time


@exec_time
Expand Down

0 comments on commit f44bab7

Please sign in to comment.