-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathsetup.py
49 lines (43 loc) · 1.38 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
#!/usr/bin/env python
import os
import sys
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup, find_packages
readme = open('README.rst').read()
doclink = """
Documentation
-------------
The full documentation is at http://centreonapi.rtfd.org."""
history = open('HISTORY.rst').read().replace('.. :changelog:', '')
setup(
name='centreonapi',
version='0.1.5',
description='Centreon Api for use Webservice in Centreon Web 2.8.0 or later',
long_description=readme + '\n\n' + doclink + '\n\n' + history,
author='Guillaume Watteeux',
author_email='[email protected]',
url='https://github.com/guillaumewatteeux/centreon-sdk-python',
packages=find_packages(),
package_dir={'centreonapi': 'centreonapi'},
include_package_data=True,
install_requires=[
'requests',
'bs4',
],
license='Apache-2.0',
zip_safe=False,
keywords='centreonapi',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)