mirror of
https://github.com/drygdryg/netbox-plugin-device-map.git
synced 2024-11-26 04:00:54 +03:00
32 lines
1010 B
Python
32 lines
1010 B
Python
from setuptools import setup, find_packages
|
|
|
|
version = '0.1.3'
|
|
|
|
with open('README.md', encoding='utf-8') as f:
|
|
long_description = f.read()
|
|
|
|
setup(
|
|
name='netbox-plugin-device-map',
|
|
version=version,
|
|
description='A simple device map with filter criteria',
|
|
long_description=long_description,
|
|
long_description_content_type='text/markdown',
|
|
license='MIT',
|
|
author='Victor Golovanenko',
|
|
author_email='drygdryg2014@yandex.com',
|
|
url='https://github.com/drygdryg/netbox-plugin-device-map',
|
|
download_url='https://github.com/drygdryg/netbox-plugin-device-map/archive/v{}.zip'.format(version),
|
|
python_requires='>3.9',
|
|
classifiers=[
|
|
'Environment :: Plugins',
|
|
'Environment :: Web Environment',
|
|
'Framework :: Django',
|
|
'License :: OSI Approved :: MIT License',
|
|
'Topic :: System :: Networking',
|
|
'Topic :: System :: Systems Administration'
|
|
],
|
|
packages=find_packages(),
|
|
include_package_data=True,
|
|
zip_safe=False,
|
|
)
|