Update setup.py

This commit is contained in:
Richard Mwewa
2022-11-25 02:46:24 +02:00
committed by GitHub
parent 40fffcab73
commit 7c8fea02e6

View File

@@ -5,24 +5,27 @@ with open("README.md", "r", encoding="utf-8") as file:
setuptools.setup( setuptools.setup(
name="octosuite", name="octosuite",
version="2.3.3", version="3.0.0",
author="Richard Mwewa", author="Richard Mwewa",
author_email="rly0nheart@duck.com", author_email="rly0nheart@duck.com",
packages=["octosuite"], packages=["octosuite"],
description="Advanced Github OSINT Framework", description="Advanced Github OSINT Framework",
long_description=long_description, long_description=long_description,
long_description_content_type="text/markdown", long_description_content_type="text/markdown",
url="https://github.com/rly0nheart/octosuite", url="https://github.com/bellingcat/octosuite",
license="GNU General Public License v3 (GPLv3)", license="GNU General Public License v3 (GPLv3)",
install_requires=["requests", "rich"], install_requires=["requests", "rich", "psutil"],
classifiers=[ classifiers=[
'Development Status :: 5 - Production/Stable', 'Development Status :: 5 - Production/Stable',
'Intended Audience :: Information Technology', 'Intended Audience :: Information Technology',
@@ -25,7 +25,7 @@ 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Natural Language :: English',
'Programming Language :: Python :: 3'
], ],
entry_points={ entry_points={
"console_scripts": [ "console_scripts": [
"octosuite=octosuite.main:main", "octosuite=octosuite.main:octosuite",
] ]
}, },
) )