forked from guillaumewatteeux/centreon-sdk-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (19 loc) · 631 Bytes
/
setup.py
File metadata and controls
21 lines (19 loc) · 631 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='centreonapi',
version='0.0.2',
description='Centreon Api for use Webservice in Centreon Web 2.8.0 or later',
author='Centreon Team',
author_email='contact@centreon.com',
license='Apache-2.0',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3'
],
packages=find_packages(),
install_requires=['requests']
)