updated setup.py

This commit is contained in:
grey-cat-1908 2023-06-05 13:06:50 +03:00
parent d546175131
commit bde481924e
2 changed files with 7 additions and 4 deletions

View file

@ -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:

View file

@ -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"],
)