-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (28 loc) · 980 Bytes
/
setup.py
File metadata and controls
31 lines (28 loc) · 980 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
26
27
28
29
30
31
"""MoodBot for Discord"""
from setuptools import setup
setup(
name='discord-moodbot',
version='0.1',
python_requires='>=3.5',
author='Jeanbourquin Paul & Guerne Jonathan',
author_email='paul.jeanbourquin@he-arc.ch & jonathan.guerne@he-arc.ch',
url='https://github.com/JonathanGuerne/MoodBot',
license='https://opensource.org/licenses/BSD-3-Clause',
keywords='discord mood bot',
classifiers=(
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Education',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
),
install_requires=(
'discord>=0.16.8',
'textblob>=0.12.0'
),
extras_require={ },
)