From 98948f17e2a6a13db36cff2938ba5f28a0c345f1 Mon Sep 17 00:00:00 2001 From: giorgiop Date: Wed, 27 Jul 2022 13:02:13 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.0.0=20=E2=86=92=201.1.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- setup.cfg | 70 ++++++++++++++++++++++----------------------- src/dot/__init__.py | 2 +- 2 files changed, 36 insertions(+), 36 deletions(-) diff --git a/setup.cfg b/setup.cfg index c61337b..28a3b77 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.0 +current_version = 1.1.0 commit = True tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)? @@ -19,49 +19,49 @@ long_description = file: README.md log_description_content_type = text/markdown url = attr: dot.__url__ license = BSD 3-Clause License -classifiers = - Programming Language :: Python :: 3.8 +classifiers = + Programming Language :: Python :: 3.8 [options] -package_dir = - = src +package_dir = + = src packages = find: python_requires = >=3.8,<3.9 -install_requires = - click - dlib - face_alignment - kornia - mediapipe - numpy - onnxruntime - opencv-contrib-python - opencv_python - Pillow - protobuf - PyYAML - requests - scikit_image - scipy - torch - torchvision +install_requires = + click + dlib + face_alignment + kornia + mediapipe + numpy + onnxruntime + opencv-contrib-python + opencv_python + Pillow + protobuf + PyYAML + requests + scikit_image + scipy + torch + torchvision [options.extras_require] dev = - black - bumpversion - flake8 - ipdb - ipython - isort - pre-commit - pytest - pytest-cov - types-PyYAML + black + bumpversion + flake8 + ipdb + ipython + isort + pre-commit + pytest + pytest-cov + types-PyYAML [options.packages.find] where = src [options.entry_points] -console_scripts = - dot = dot.__main__:main +console_scripts = + dot = dot.__main__:main diff --git a/src/dot/__init__.py b/src/dot/__init__.py index 1ca9ec8..a4e851a 100644 --- a/src/dot/__init__.py +++ b/src/dot/__init__.py @@ -6,7 +6,7 @@ from .dot import DOT -__version__ = "1.0.0" +__version__ = "1.1.0" __author__ = "Sensity" __url__ = "https://github.com/sensity-ai/dot/tree/main/dot" __docs__ = "Deepfake offensive toolkit"