Skip to content

Commit

Permalink
Release v0.19. Add methods.
Browse files Browse the repository at this point in the history
  • Loading branch information
amkuznetsov committed Jan 23, 2024
1 parent a1284a3 commit 1e802a7
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
3 changes: 2 additions & 1 deletion HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
28-03-2023 Release v0.1. First function to release.
23-01-2024 Release v0.19. Add methods.
23-01-2024 Release v0.19. Add methods.
23-01-2024 Release v0.20. Fix builds.
9 changes: 6 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
[build-system]
requires = ["setuptools>=61.0"]
requires = [
"setuptools~=67.8.0",
"requests~=2.31.0",
]
build-backend = "setuptools.build_meta"

[project]
Expand All @@ -9,9 +12,9 @@ authors = [
{ name="Aleksandr Kuznetsov", email="izhatomic@yandex.ru" },
{ name="Aleksandr Zarin", email="vector-777@yandex.ru" },
]
description = "Simple Mattermost API library"
description = "Simple wrapper for Mattermost API"
readme = "README.md"
requires-python = ">=3.6"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
setuptools~=65.5.1
requests~=2.28.2
requests~=2.31.0
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
setup_args = dict(
name='Mattermost-API',
version='0.19',
description='Simple Mattermost API library',
description='Simple wrapper for Mattermost API',
long_description_content_type="text/markdown",
long_description=README + '\n\n' + HISTORY,
license='MIT',
license='MIT License',
packages=find_packages(),
author='Aleksandr Kuznetsov, Aleksandr Zarin',
author_email='izhatomic@yandex.ru, vector-777@yandex.ru',
Expand All @@ -24,6 +24,7 @@
)

install_requires = [
"setuptools~=67.8.0",
'requests'
]

Expand Down

0 comments on commit 1e802a7

Please sign in to comment.