-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (33 loc) · 1.12 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
44
45
from distutils.core import setup
setup(
name='DiscordBot',
version='0.1dev',
description='Python 3.5+ Discord Bot for free game offers on Steam and Epic Games Store',
# The project's main homepage.
url='https://github.com/game-notify',
# Author details.
author='Kaspar Wetsch',
author_email='[email protected]',
# 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.5',
'Programming Language :: Python :: 3.6'
'Programming Language :: Python :: 3.7'
'Programming Language :: Python :: 3.8'
],
# Keywords
keywords='development tools chat bot',
# Required dependencies. Will be installed by pip
# when the project is installed.
install_requires=['discord.py', 'requests'],
)