-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
28 lines (27 loc) · 1012 Bytes
/
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
# coding=utf-8
from setuptools import setup
setup(
name='RedditRover',
version='0.9',
packages=['core', 'config', 'plugins', 'misc'],
url='https://github.com/DarkMio/Massdrop-Reddit-Bot',
license='GPLv2',
author='Martin Zier',
author_email='[email protected]',
description='RedditRover is a framework to host multiple bots that trigger on comments or submissions on reddit.',
install_requires=['praw>=3.1.0'],
classifiers=[
"Development Status :: 4 - Beta",
"License :: MIT License",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Topic :: Internet",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
]
)