boticordpy/setup.py
2021-08-24 21:20:10 +03:00

29 lines
829 B
Python

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",
packages = ['boticordpy'],
version="1.3.5",
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"],
)