boticordpy/setup.py

30 lines
851 B
Python
Raw Normal View History

2021-08-24 21:20:10 +03:00
import pathlib
from setuptools import setup
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
README = (HERE / "README.md").read_text(encoding="utf8")
# This call to setup() does all the work
setup(
name="boticordpy",
2021-08-29 08:07:52 +03:00
packages = ['boticordpy', 'boticordpy.modules'],
2021-09-09 17:27:12 +03:00
version="1.3.6",
2021-08-24 21:20:10 +03:00
description="Simple Python Module for boticord api",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/grey-cat-1908/boticordpy",
author="KerdokuCat",
author_email="support@kerdoku.top",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
],
install_requires=["discord.py", "aiohttp"],
)