diff --git a/LICENSE b/LICENSE index f34db29..22f6131 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2021 Daniil Fajnberg +Copyright (c) 2022 Daniil Fajnberg Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/setup.cfg b/setup.cfg index f3f9430..c642716 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = webutils-df -version = 0.0.6 +version = 0.1.1 author = Daniil F. author_email = mail@placeholder123.to description = Miscellaneous web utilities @@ -8,7 +8,7 @@ long_description = file: README.md long_description_content_type = text/markdown url = https://git.fajnberg.de/daniil/webutils-df project_urls = - Bug Tracker = https://github.com/daniil-berg/webutils-df/issues + Bug Tracker = https://git.fajnberg.de/daniil/webutils-df/issues classifiers = Programming Language :: Python :: 3 License :: OSI Approved :: MIT License diff --git a/src/webutils/__init__.py b/src/webutils_df/__init__.py similarity index 83% rename from src/webutils/__init__.py rename to src/webutils_df/__init__.py index 73789ec..5711caf 100644 --- a/src/webutils/__init__.py +++ b/src/webutils_df/__init__.py @@ -1,4 +1,5 @@ from .util import ( in_async_session, + attempt, gather_in_batches ) diff --git a/src/webutils/util.py b/src/webutils_df/util.py similarity index 100% rename from src/webutils/util.py rename to src/webutils_df/util.py