-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
43 lines (32 loc) · 1.04 KB
/
setup.py
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
32
33
34
35
36
37
38
39
40
41
42
43
from distutils.core import setup
setup(
name='DiscordBot',
version='0.1dev',
description='Python 3.4+ Discord Bot boilerplate project',
# The project's main homepage.
url='https://www.IamGregAmato.com',
# Author details.
author='Greg Amato',
author_email='amatobahn@gmail.com',
# License
license='MIT',
# Classifiers
classifiers=[
# Project Stage:
'Development Status :: 3 - Alpha',
# Intended for:
'Intended Audience :: Developers, Artists',
'Topic :: Software Development :: Tools',
# License:
'License :: MIT',
# Supported Python versions:
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'
],
# Keywords
keywords='development tools chat bot',
# Required dependencies. Will be installed by pip
# when the project is installed.
install_requires=['discord.py', 'requests'],
)