-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (33 loc) · 948 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
from setuptools import setup
setup(
name='cachet_netbox_sync',
version='0.0.1',
description='Take things from netbox and add them as components in netbox.',
author='uberspace.de',
author_email='[email protected]',
url='https://github.com/uberspace/cachet_netbox_sync',
packages=[
'cachet_netbox_sync',
],
entry_points={
'console_scripts': ['cachet_netbox_sync=cachet_netbox_sync.hashbang:main'],
},
install_requires=[
'cachet-client==3.0.*',
'pynetbox==5.1.*',
],
extras_require={
'dev': [
'black',
'pre-commit',
],
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'Topic :: System :: Systems Administration',
'Programming Language :: Python :: 3.6',
],
zip_safe=True,
)