-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (34 loc) · 945 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
37
38
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
"""
A setuptools based setup module.
See:
https://packaging.python.org/en/latest/distributing.html
https://github.com/pypa/sampleproject
"""
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
setup(
name='Tuber',
version='0.1',
description='Connector for various message queues',
long_description='Connector for various message queues', #FIXME
url='https://github.com/metno/Tuber',
author='Lars Jørgen Solberg',
author_email='[email protected]',
license='GPLv3',
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3',
],
install_requires=['kafka-python', 'python-dateutil'],
keywords='GTS WMO Kafka',
packages=find_packages(),
entry_points={
'console_scripts': [
'tuber=Tuber.Daemon:main',
],
},
test_suite = 'tests'
)