forked from LiBa001/disputils
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 809 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 809 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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.3',
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',
install_requires=['discord.py >=1,<2'],
keywords='discord discord-py discord-bot utils utility',
packages=find_packages(exclude=['tests', 'docs']),
data_files=None
)