diff --git a/.gitignore b/.gitignore index 26d0710..7d4ebe7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,6 @@ .idea venv __pycache__ +build/ +disputils.egg-info/ +dist/ diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..ef2b93d --- /dev/null +++ b/setup.py @@ -0,0 +1,24 @@ +from setuptools import setup, find_packages + +with open('README.rst', 'r', encoding='utf-8') as f: + readme = f.read() + +setup( + name='disputils', + version='0.1.1', + description='Some utilities for discord.py. Making Discord bot development easier.', + long_description=readme, + long_description_content_type='text/x-rst', + url='https://github.com/LiBa001/disputils', + author='Linus Bartsch', + author_email='linus.pypi@mabasoft.de', + license='MIT', + classifiers=[ + 'License :: OSI Approved :: MIT License', + 'Programming Language :: Python :: 3.6' + ], + python_requires='>=3.6', + keywords='discord discord-py discord-bot utils utility', + packages=find_packages(exclude=['tests', 'docs']), + data_files=None +)