mirror of
https://github.com/boticord/boticordpy.git
synced 2024-11-11 19:07:29 +03:00
updated setup.py
This commit is contained in:
parent
d546175131
commit
bde481924e
2 changed files with 7 additions and 4 deletions
|
@ -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:
|
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:
|
||||||
|
|
||||||
|
|
9
setup.py
9
setup.py
|
@ -44,10 +44,11 @@ setup(
|
||||||
},
|
},
|
||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
version=version,
|
version=version,
|
||||||
python_requires=">= 3.6",
|
python_requires=">= 3.8",
|
||||||
description="A Python wrapper for BotiCord API",
|
description="A Python wrapper for BotiCord API",
|
||||||
long_description=README,
|
long_description=README,
|
||||||
long_description_content_type="text/markdown",
|
long_description_content_type="text/markdown",
|
||||||
|
include_package_data=True,
|
||||||
url="https://github.com/boticord/boticordpy",
|
url="https://github.com/boticord/boticordpy",
|
||||||
author="Marakarka",
|
author="Marakarka",
|
||||||
author_email="support@kerdoku.top",
|
author_email="support@kerdoku.top",
|
||||||
|
@ -55,7 +56,9 @@ setup(
|
||||||
classifiers=[
|
classifiers=[
|
||||||
"License :: OSI Approved :: MIT License",
|
"License :: OSI Approved :: MIT License",
|
||||||
"Programming Language :: Python :: 3",
|
"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"],
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue