Skip to content

Commit

Permalink
Merge pull request #314 from CllaudiaB/release
Browse files Browse the repository at this point in the history
fix(setup.py): missing commas
  • Loading branch information
CllaudiaB authored Oct 23, 2024
2 parents d9a8294 + 2f1eebf commit 4150d5e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@ def get_requirements():
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8'
'Programming Language :: Python :: 3.9'
'Programming Language :: Python :: 3.10'
'Programming Language :: Python :: 3.11'
'Programming Language :: Python :: 3.12'
'Programming Language :: Python :: 3.13'
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
],
entry_points={
'console_scripts': ['netbox_agent=netbox_agent.cli:main'],
Expand Down

0 comments on commit 4150d5e

Please sign in to comment.