forked from unistra/python-glpi-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 669 Bytes
/
setup.py
File metadata and controls
22 lines (20 loc) · 669 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# coding: utf-8
from setuptools import setup
setup(
name='glpi-api',
version='0.5.0',
author='François Ménabé',
author_email='francois.menabe@gmail.fr',
url='https://github.com/unistra/python-glpi-api',
license='GPLv3+',
description='Wrap calls to GLPI REST API.',
long_description=open('README.rst').read(),
keywords=['rest', 'api', 'glpi'],
classifiers=[
'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)',
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 3'
],
py_modules=['glpi_api'],
install_requires=['requests']
)