From d9fd0995d0dac8bf218d801d1a4b65d7d65fb04b Mon Sep 17 00:00:00 2001 From: Aniket Sarkar Date: Wed, 11 Aug 2021 15:11:52 +0530 Subject: [PATCH] update dependencies --- CHANGELOG.md | 2 + flask_mailing/__init__.py | 2 +- pyproject.toml | 192 +++++++++++++++++++------------------- 3 files changed, 99 insertions(+), 97 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e69de29..085945b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -0,0 +1,2 @@ +## 0.0.2 +- Update dependencies \ No newline at end of file diff --git a/flask_mailing/__init__.py b/flask_mailing/__init__.py index 76989e4..72e5b49 100644 --- a/flask_mailing/__init__.py +++ b/flask_mailing/__init__.py @@ -4,7 +4,7 @@ from . import utils -version_info = (0, 0, 1) +version_info = (0, 0, 2) __version__ = ".".join([str(v) for v in version_info]) diff --git a/pyproject.toml b/pyproject.toml index 3acb13a..291dea4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,104 +1,104 @@ -[tool.poetry] -name = "Flask-Mailing" -version = "0.0.1" -description = "Flask mail system sending mails(individual, bulk) attachments(individual, bulk) asynchroniously." -authors = ["Aniket Sarkar "] -license = "MIT" -readme="README.md" -repository="https://github.com/marktennyson/flask-mailing" -keywords=["flask", "mail", "smtp", "flask-mail", "flask-mailing", "flask-mailman"] -exclude = ["docs", "tests*"] -classifiers=[ - "Development Status :: 4 - Beta", - "Intended Audience :: Developers", - "License :: OSI Approved :: MIT License", - "Framework :: Flask", - "Topic :: Software Development :: Build Tools", - "Topic :: Communications :: Email", - "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.6", - "Programming Language :: Python :: 3.7", - "Programming Language :: Python :: 3.8", - "Programming Language :: Python :: 3.9", - ] +# [tool.poetry] +# name = "Flask-Mailing" +# version = "0.0.1" +# description = "Flask mail system sending mails(individual, bulk) attachments(individual, bulk) asynchroniously." +# authors = ["Aniket Sarkar "] +# license = "MIT" +# readme="README.md" +# repository="https://github.com/marktennyson/flask-mailing" +# keywords=["flask", "mail", "smtp", "flask-mail", "flask-mailing", "flask-mailman"] +# exclude = ["docs", "tests*"] +# classifiers=[ +# "Development Status :: 4 - Beta", +# "Intended Audience :: Developers", +# "License :: OSI Approved :: MIT License", +# "Framework :: Flask", +# "Topic :: Software Development :: Build Tools", +# "Topic :: Communications :: Email", +# "Programming Language :: Python :: 3", +# "Programming Language :: Python :: 3.6", +# "Programming Language :: Python :: 3.7", +# "Programming Language :: Python :: 3.8", +# "Programming Language :: Python :: 3.9", +# ] -[tool.poetry.dependencies] -python = "^3.6.2" -flask = ">= 2.0" -aiosmtplib = ">= 1.1.6" -aioredis =">= 2.0.0" -asgiref =">= 3.4.1" -blinker = ">= 1.4" -pydantic = ">= 1.8.2" -email-validator = ">= 1.1.3" -httpx = ">= 0.18.2" -typing-extensions = ">= 3.10.0.0" -fakeredis = ">=1.0" +# [tool.poetry.dependencies] +# python = "^3.6.2" +# flask = ">= 2.0" +# aiosmtplib = ">= 1.1.6" +# aioredis =">= 2.0.0" +# asgiref =">= 3.4.1" +# blinker = ">= 1.4" +# pydantic = ">= 1.8.2" +# email-validator = ">= 1.1.3" +# httpx = ">= 0.18.2" +# typing-extensions = ">= 3.10.0.0" +# fakeredis = ">=1.0" -black = { version = "^21.5b2", optional = true} -isort = { version = "^5.8.0", optional = true} -flake8 = { version = "^3.9.2", optional = true} -pytest = { version = "^6.2.4", optional = true} -pytest-cov = { version = "^2.12.0", optional = true} -tox = { version = "^3.20.1", optional = true} -virtualenv = { version = "^20.2.2", optional = true} -pip = { version = "^20.3.1", optional = true} -twine = { version = "^3.3.0", optional = true} -pre-commit = {version = "^2.12.0", optional = true} -toml = {version = "^0.10.2", optional = true} -bump2version = {version = "^1.0.1", optional = true} +# black = { version = "^21.5b2", optional = true} +# isort = { version = "^5.8.0", optional = true} +# flake8 = { version = "^3.9.2", optional = true} +# pytest = { version = "^6.2.4", optional = true} +# pytest-cov = { version = "^2.12.0", optional = true} +# tox = { version = "^3.20.1", optional = true} +# virtualenv = { version = "^20.2.2", optional = true} +# pip = { version = "^20.3.1", optional = true} +# twine = { version = "^3.3.0", optional = true} +# pre-commit = {version = "^2.12.0", optional = true} +# toml = {version = "^0.10.2", optional = true} +# bump2version = {version = "^1.0.1", optional = true} -[tool.poetry.extras] -test = [ - "pytest", - "black", - "isort", - "flake8", - "pytest-cov" - ] +# [tool.poetry.extras] +# test = [ +# "pytest", +# "black", +# "isort", +# "flake8", +# "pytest-cov" +# ] -dev = ["tox", "pre-commit", "virtualenv", "pip", "twine", "toml", "bump2version"] +# dev = ["tox", "pre-commit", "virtualenv", "pip", "twine", "toml", "bump2version"] -doc = [ - "mkdocs", - "mkdocs-include-markdown-plugin", - "mkdocs-material", - "mkdocstrings", - "mkdocs-material-extension", - "mkdocs-autorefs" - ] +# doc = [ +# "mkdocs", +# "mkdocs-include-markdown-plugin", +# "mkdocs-material", +# "mkdocstrings", +# "mkdocs-material-extension", +# "mkdocs-autorefs" +# ] -[tool.black] -line-length = 120 -skip-string-normalization = true -target-version = ['py36', 'py37', 'py38'] -include = '\.pyi?$' -exclude = ''' -/( - \.eggs - | \.git - | \.hg - | \.mypy_cache - | \.tox - | \.venv - | _build - | buck-out - | build - | dist -)/ -''' +# [tool.black] +# line-length = 120 +# skip-string-normalization = true +# target-version = ['py36', 'py37', 'py38'] +# include = '\.pyi?$' +# exclude = ''' +# /( +# \.eggs +# | \.git +# | \.hg +# | \.mypy_cache +# | \.tox +# | \.venv +# | _build +# | buck-out +# | build +# | dist +# )/ +# ''' -[tool.isort] -multi_line_output = 3 -include_trailing_comma = true -force_grid_wrap = 0 -use_parentheses = true -ensure_newline_before_comments = true -line_length = 120 -skip_gitignore = true -# you can skip files as below -#skip_glob = docs/conf.py +# [tool.isort] +# multi_line_output = 3 +# include_trailing_comma = true +# force_grid_wrap = 0 +# use_parentheses = true +# ensure_newline_before_comments = true +# line_length = 120 +# skip_gitignore = true +# # you can skip files as below +# #skip_glob = docs/conf.py -[build-system] -requires = ["poetry-core>=1.0.0"] -build-backend = "poetry.core.masonry.api" \ No newline at end of file +# [build-system] +# requires = ["poetry-core>=1.0.0"] +# build-backend = "poetry.core.masonry.api" \ No newline at end of file