From bde481924ef30a34bf6b2ffa19a0c8bd11712c4e Mon Sep 17 00:00:00 2001 From: grey-cat-1908 Date: Mon, 5 Jun 2023 13:06:50 +0300 Subject: [PATCH] updated setup.py --- LICENSE.txt | 2 +- setup.py | 9 ++++++--- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/LICENSE.txt b/LICENSE.txt index df4f53d..0463ab7 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,4 +1,4 @@ -Copyright 2021 - 2023 Viktor K +Copyright 2021 - 2023 Viktor K (Marakarka) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: diff --git a/setup.py b/setup.py index b0b7a5b..9da7f02 100644 --- a/setup.py +++ b/setup.py @@ -44,10 +44,11 @@ setup( }, packages=find_packages(), version=version, - python_requires=">= 3.6", + python_requires=">= 3.8", description="A Python wrapper for BotiCord API", long_description=README, long_description_content_type="text/markdown", + include_package_data=True, url="https://github.com/boticord/boticordpy", author="Marakarka", author_email="support@kerdoku.top", @@ -55,7 +56,9 @@ setup( classifiers=[ "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", ], - install_requires=["aiohttp"], + install_requires=["aiohttp", "typing_extensions"], )