-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
34 lines (29 loc) · 1.13 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
from setuptools import setup
import toxbot.app as app
version = app.__version__ + '.0'
maintainer = app.__maintainer__
# TODO: find all packages
setup(name='ToxBotPlatform',
version=version,
description='Tox Bot Platform',
long_description='Tox bot platform provides easy way to create bots for Tox messenger',
url='https://github.com/toxygen-project/bot-platform',
keywords='tox messenger bot platform',
author=maintainer,
maintainer=maintainer,
license='GPL3',
packages=[
'toxbot', 'toxbot.core', 'toxbot.wrapper', 'toxbot.middleware', 'toxbot.core.bootstrap',
'toxbot.core.bot_data', 'toxbot.core.commands', 'toxbot.core.file_transfers', 'toxbot.core.common',
'toxbot.core.groups'
],
include_package_data=True,
package_data={'toxbot.core.bootstrap': ['nodes.json']},
classifiers=[
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
entry_points={
'console_scripts': ['toxbot=toxbot.app:main'],
})