Skip to content

Commit

Permalink
added setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
LiBa001 committed Feb 9, 2019
1 parent 5a0cfa8 commit 9f7dfc7
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
.idea
venv
__pycache__
build/
disputils.egg-info/
dist/
24 changes: 24 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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
)

0 comments on commit 9f7dfc7

Please sign in to comment.