-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (33 loc) · 1015 Bytes
/
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
from setuptools import setup
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Operating System :: POSIX',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
'Topic :: Utilities',
]
py_versions = ['2', '2.6', '2.7']
classifiers += [
'Programming Language :: Python :: %s' % x
for x in py_versions
]
setup(
name='bender-skype',
description='bender-skype: Skype as Bender backbone',
version='0.1.0',
url='https://github.com/bender-bot/bender-skype',
license='LGPLv3',
platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'],
author='Fabio Menegazzo',
author_email='[email protected]',
classifiers=classifiers,
install_requires=['Skype4Py'],
py_modules=['bender_skype'],
entry_points={
'bender_backbone': [
'skype = bender_skype:BenderSkype',
],
}
)