16 lines
416 B
Python
16 lines
416 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name='logag-python-handler',
|
|
version='0.1.6',
|
|
packages=['logag_handler'],
|
|
url='https://gitlab.com/logag/logag-python-handler',
|
|
license='MIT',
|
|
author='jar3b',
|
|
author_email='jar3b@outlook.com',
|
|
description='Python handler for logag',
|
|
install_requires=[
|
|
'xid @ git+https://github.com/graham/python_xid.git@master#egg=xid-1.0.5',
|
|
],
|
|
)
|