-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
31 lines (28 loc) · 917 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
import setuptools
long_description = \
"""
This library is the companion to [netbox-kafka-producer](https://github.com/ebusto/netbox-kafka-producer), making it easy to consume [NetBox](https://github.com/digitalocean/netbox/) changes from [Kafka](https://kafka.apache.org/).
"""
packages = [
'confluent-kafka==1.5.0',
'funcsigs==1.0.2',
'future==0.18.2',
'pynetbox==6.6.2',
]
setuptools.setup(
name='netbox-kafka-consumer',
version='1.0.16',
author='Eric Busto',
author_email='[email protected]',
description='Easily consume NetBox changes from Kafka',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/ebusto/netbox-kafka-consumer',
packages=setuptools.find_packages(),
install_requires=packages,
classifiers=[
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
],
)