-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
44 lines (41 loc) · 1.21 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
# -*- coding: utf-8 -*-
from setuptools import find_packages
from setuptools import setup
from katana import __version__
setup(
name='katana-sdk-python2',
version=__version__,
url='http://kusanagi.io/',
license='MIT',
author='Jerónimo Albi',
author_email='jeronimo.albi@kusanagi.io',
description='Python 2 SDK to interface with the KATANA™ framework',
platforms=['POSIX'],
download_url='https://github.com/kusanagi/katana-sdk-python2/releases',
packages=find_packages(exclude=['tests']),
include_package_data=True,
zip_safe=True,
install_requires=[
'gevent==1.2.1',
'click==6.4',
'pyzmq==15.4.0',
'msgpack-python==0.4.7',
],
setup_requires=[
'pytest-runner',
],
tests_require=[
'pytest',
'pytest-mock',
'pytest-cov',
'coverage',
],
classifiers=[
'Intended Audience :: Developers',
'Programming Language :: Python :: 2.7',
'Operating System :: POSIX :: Linux',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Networking',
],
)