-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
52 lines (45 loc) · 1.25 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='eevee',
version='1.0.0a0',
description='A Discord Bot Framework.',
url='https://github.com/scragly/Eevee',
author='Scragly',
author_email='',
license='GNU General Public License v3.0',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Topic :: Communications :: Chat',
'Topic :: Utilities',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.6',
],
keywords='discord chat bot development framework',
install_requires=[
'discord.py',
'python-dateutil>=2.6',
'asyncpg>=0.13',
'python-Levenshtein>=0.12',
'fuzzywuzzy',
'psutil',
'aiocontextvars',
'colorthief',
'more_itertools',
'numpy',
'pendulum',
'pytz'
],
dependency_links=[
'git+https://github.com/Rapptz/discord.py@rewrite#egg=discord.py-1'
],
package_data={
'eevee': ['data/*.json'],
},
entry_points={
'console_scripts': [
'eevee=eevee.launcher:main',
'eevee-bot=eevee.__main__:main'
],
},
)