forked from shibdib/Firetail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
52 lines (44 loc) · 1.39 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
48
49
50
51
52
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',
author_email='',
license='GNU General Public License v3.0',
# 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.5',
],
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>=2.0.0,<2.3.0',
'feedparser'
],
dependency_links=[
'git+https://github.com/Rapptz/discord.py@rewrite#egg=discord.py-1'
],
package_data={
'firetail': ['data/*.json'],
},
entry_points={
'console_scripts': [
'firetail=firetail.launcher:main',
'firetail-bot=firetail.__main__:main'
],
},
)