33with open ("README.md" , "r" ) as fh :
44 long_description = fh .read ()
55
6- with open (' requirements.txt' ) as f :
6+ with open (" requirements.txt" ) as f :
77 required = f .read ().splitlines ()
88
99about = {}
1313setuptools .setup (
1414 name = "tnscm" ,
1515 version = about ["__version__" ],
16- license = ' MIT' ,
16+ license = " MIT" ,
1717 author = "Damian Krawczyk" ,
18181919 description = "TNSCM (Tenable Nessus CLI Manager) by LimberDuck" ,
2222 url = "https://github.com/LimberDuck/tnscm" ,
2323 packages = setuptools .find_packages (),
2424 install_requires = required ,
25- entry_points = {
26- "console_scripts" : [
27- "tnscm = tnscm.__main__:main"
28- ]
29- },
25+ entry_points = {"console_scripts" : ["tnscm = tnscm.__main__:main" ]},
3026 classifiers = [
27+ "Programming Language :: Python :: 3.13" ,
28+ "Programming Language :: Python :: 3.12" ,
29+ "Programming Language :: Python :: 3.11" ,
30+ "Programming Language :: Python :: 3.10" ,
3131 "Programming Language :: Python :: 3.9" ,
3232 "Programming Language :: Python :: 3.8" ,
33- "Programming Language :: Python :: 3.7" ,
3433 "License :: OSI Approved :: MIT License" ,
3534 "Operating System :: OS Independent" ,
3635 "Development Status :: 4 - Beta" ,
3736 "Environment :: Console" ,
3837 ],
39- )
38+ )
0 commit comments