forked from CiscoDevNet/webex-teams-archiver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
65 lines (57 loc) · 1.6 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
53
54
55
56
57
58
59
60
61
62
63
64
65
#!/usr/bin/env python
import os
import re
from setuptools import setup, find_packages
__copyright__ = "Copyright (c) 2018 Cisco and/or its affiliates."
__license__ = "MIT"
PACKAGE_NAME = 'webexteamsarchiver'
PACKAGE_KEYWORDS = [
'cisco',
'webex',
'teams',
'spark',
'python',
'messaging',
]
PACKAGE_CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Intended Audience :: System Administrators',
'Intended Audience :: Telecommunications Industry',
'Intended Audience :: Information Technology',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Communications',
'Topic :: Communications :: Chat'
]
INSTALLATION_REQUIREMENTS = [
'webexteamssdk',
'jinja2',
'requests',
'hurry.filesize',
'bump2version',
]
long_description = open(
os.path.join(
os.path.dirname(__file__),
'README.rst'
)
).read()
setup(
name=PACKAGE_NAME,
author='Felipe de Mello',
author_email='[email protected]',
version='0.11.3',
url='https://github.com/CiscoDevNet/webex-teams-archiver',
description='Room archiver utility for Webex Teams',
long_description=long_description,
packages=find_packages('.'),
include_package_data=True,
install_requires=INSTALLATION_REQUIREMENTS,
keywords=' '.join(PACKAGE_KEYWORDS),
classifiers=PACKAGE_CLASSIFIERS,
license='MIT; Copyright (c) 2018 Cisco Systems, Inc.'
)