netbox-plugin-device-map/setup.py

32 lines
1010 B
Python
Raw Normal View History

2022-05-26 09:53:13 +03:00
from setuptools import setup, find_packages
2023-06-08 13:02:53 +03:00
version = '0.1.3'
2022-08-26 18:01:53 +03:00
2022-05-26 09:53:13 +03:00
with open('README.md', encoding='utf-8') as f:
long_description = f.read()
setup(
name='netbox-plugin-device-map',
2022-08-26 18:01:53 +03:00
version=version,
2022-05-26 09:53:13 +03:00
description='A simple device map with filter criteria',
long_description=long_description,
long_description_content_type='text/markdown',
2022-08-26 18:01:53 +03:00
license='MIT',
2022-05-26 09:53:13 +03:00
author='Victor Golovanenko',
author_email='drygdryg2014@yandex.com',
2022-08-26 18:01:53 +03:00
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'
],
2022-05-26 09:53:13 +03:00
packages=find_packages(),
include_package_data=True,
2022-08-26 18:01:53 +03:00
zip_safe=False,
2022-05-26 09:53:13 +03:00
)