forked from shibdib/Firetail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (40 loc) · 1.28 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
46
47
from setuptools import find_packages, setup
setup(
name='firetail',
version='1.0.0a0',
description='firetail - An EVE Online Discord Bot',
url='https://github.com/shibdib/firetail',
author='shibdib',
license='MIT License',
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Topic :: Games/Entertainment :: Role-Playing',
'Topic :: Communications :: Chat',
'Topic :: Utilities',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.6',
],
keywords='eve online eveonline community discord bot',
# find_packages(exclude=['contrib', 'docs', 'tests'])
packages=find_packages(),
install_requires=[
'discord.py[voice]',
'python-dateutil>=2.6',
'asyncpg>=0.13',
'pytz',
'youtube_dl',
'aiohttp==3.3.2',
'feedparser'
],
dependency_links=[
'git+https://github.com/Rapptz/discord.py@rewrite#egg=discord.py[voice]'
],
entry_points={
'console_scripts': [
'firetail=firetail.launcher:main',
'firetail-bot=firetail.__main__:main'
],
},
)