forked from mtulio/glpi-cli
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (28 loc) · 851 Bytes
/
setup.py
File metadata and controls
33 lines (28 loc) · 851 Bytes
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
from setuptools import setup, find_packages
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('glpicli/version.py').read())
setup(
name='glpi-cli',
packages=["glpicli"],
version=__version__,
description='GLPI Command Line Interface',
#long_description=readme(),
url='https://github.com/mtulio/glpi-cli',
download_url='https://github.com/mtulio/glpi-cli/archive/{}.tar.gz'.format(__version__),
author='Marco Tulio R Braga',
author_email='braga@mtulio.eng.br',
license='Apache-2.0',
classifiers=[],
keywords=['GLPI', 'CLI'],
install_requires=[
'glpi',
'argparse',
],
scripts=['bin/glpi-cli'],
)