forked from truly-systems/glpi-sdk-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (31 loc) · 883 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
36
from setuptools import setup
from codecs import open
from os import path
def readme():
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
return f.read()
__version__ = None
exec(open('glpi/version.py').read())
owner = 'truly-systems'
repo = 'glpi-sdk-python'
repo_url = ('https://github.com/{}/{}/archive/{}.tar.gz'.format(owner,
repo, __version__))
setup(
name='glpi',
packages=["glpi"],
version=__version__,
description='GLPI API SDK',
# long_description=readme(),
url='https://github.com/truly-systems/glpi-sdk-python',
download_url=repo_url,
author='Marco Tulio R Braga',
author_email='[email protected]',
license='Apache-2.0',
classifiers=[],
keywords=['GLPI', 'SDK'],
install_requires=[
'requests',
'future',
]
)