File tree Expand file tree Collapse file tree 3 files changed +25
-19
lines changed
Expand file tree Collapse file tree 3 files changed +25
-19
lines changed Original file line number Diff line number Diff line change @@ -132,4 +132,5 @@ venv.bak/
132132dmypy.json
133133
134134# Pyre type checker
135- .pyre /
135+ .pyre /
136+ requirements-dev.txt
Original file line number Diff line number Diff line change 11from setuptools import find_packages , setup
22
3+ with open ("README.md" , "r" ) as f :
4+ long_description = f .read ()
5+
36setup (
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)
Original file line number Diff line number Diff line change 11from 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
You can’t perform that action at this time.
0 commit comments