-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathsetup.py
More file actions
52 lines (48 loc) · 1.28 KB
/
setup.py
File metadata and controls
52 lines (48 loc) · 1.28 KB
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
#!/usr/bin/env python3
# -*- encoding=utf-8 -*-
# description:
# author:jack
# create_time: 2018/1/6
"""
desc:pass
"""
from setuptools import setup
from setuptools import find_packages
setup(
name='dueros-bot',
version='3.2.1',
author='jack',
author_email='mupdf@sina.com',
description='Third party DuerOS Bot Python SDK',
keywords='DuerOS Bot',
url='https://github.com/jokenwang/bot-sdk-python',
packages=[
'dueros',
'dueros.card',
'dueros.directive',
'dueros.directive.Base',
'dueros.directive.AppLauncher',
'dueros.directive.AudioPlayer',
'dueros.directive.AudioPlayer.Control',
'dueros.directive.Display',
'dueros.directive.Display.media',
'dueros.directive.Display.tag',
'dueros.directive.Display.template',
'dueros.directive.DPL',
'dueros.directive.DPL.Commands',
'dueros.directive.Pay',
'dueros.directive.Permission',
'dueros.directive.Record',
'dueros.directive.VideoPlayer',
'dueros.directive.WebBrowser',
'dueros.monitor',
'dueros.monitor.model',
'dueros.plugins',
],
platforms='py3',
install_requires=[
'pycryptodome >= 3.6.6',
'requests',
'pyOpenSSL'
]
)