Skip to content

Commit 7e96b75

Browse files
committed
pip prepare
1 parent 4e5fb6d commit 7e96b75

File tree

3 files changed

+25
-19
lines changed

3 files changed

+25
-19
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,4 +132,5 @@ venv.bak/
132132
dmypy.json
133133

134134
# Pyre type checker
135-
.pyre/
135+
.pyre/
136+
requirements-dev.txt

setup.py

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,22 @@
11
from setuptools import find_packages, setup
22

3+
with open("README.md", "r") as f:
4+
long_description = f.read()
5+
36
setup(
4-
name='software_manager',
5-
version='0.1',
6-
description='Software Manager for Cisco IOS/IOS-XE devices',
7-
author='Alexander Ignatov',
8-
license='MIT',
7+
name="netbox-plugin-software-manager",
8+
version="0.0.2",
9+
description="Software Manager for Cisco IOS/IOS-XE devices",
10+
long_description=long_description,
11+
long_description_content_type="text/markdown",
12+
author="Alexander Ignatov",
13+
license="MIT",
914
install_requires=[
10-
'scrapli[paramiko]',
11-
'rq-scheduler',
12-
'xlsxwriter',
15+
"scrapli[paramiko]",
16+
"rq-scheduler",
17+
"xlsxwriter",
1318
],
1419
packages=find_packages(),
1520
include_package_data=True,
16-
url='https://github.com/alsigna/netbox-software-manager',
21+
url="https://github.com/alsigna/netbox-software-manager",
1722
)

software_manager/__init__.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
from extras.plugins import PluginConfig
22

33

4-
class software_manager(PluginConfig):
5-
name = 'software_manager'
6-
verbose_name = 'Software Manager'
7-
description = 'Software Manager for Cisco IOS/IOS-XE devices'
8-
version = '0.1'
9-
author = 'Alexander Ignatov'
10-
author_email = 'ignatov.alx@gmail.com'
4+
class SoftwareManager(PluginConfig):
5+
name = "software_manager"
6+
verbose_name = "Software Manager"
7+
description = "Software Manager for Cisco IOS/IOS-XE devices"
8+
version = "0.0.2"
9+
author = "Alexander Ignatov"
10+
author_email = "ignatov.alx@gmail.com"
1111
required_settings = []
1212
default_settings = {}
13-
base_url = 'software_manager'
13+
base_url = "software-manager"
1414
caching_config = {}
1515

1616

17-
config = software_manager
17+
config = SoftwareManager

0 commit comments

Comments
 (0)