Projects STRLCPY RTSPbrute Commits 9cfba0b5
🤬
  • ■ ■ ■ ■ ■ ■
    setup.py
     1 +import setuptools
     2 + 
     3 +from rtspbrute import __version__
     4 + 
     5 +with open("README.md", "r") as f:
     6 + long_description = f.read()
     7 + 
     8 +setuptools.setup(
     9 + name="rtspbrute",
     10 + version=__version__,
     11 + description="Tool for RTSP that brute-forces routes and credentials, makes screenshots!",
     12 + long_description=long_description,
     13 + long_description_content_type="text/markdown",
     14 + url="https://gitlab.com/woolf/RTSPbrute",
     15 + author="Woolf",
     16 + author_email="[email protected]",
     17 + classifiers=[
     18 + "Development Status :: 5 - Production/Stable",
     19 + "Environment :: Console",
     20 + "Intended Audience :: Developers",
     21 + "Intended Audience :: Information Technology",
     22 + "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
     23 + "Natural Language :: English",
     24 + "Operating System :: OS Independent",
     25 + "Programming Language :: Python :: 3",
     26 + "Programming Language :: Python :: 3.7",
     27 + "Programming Language :: Python :: 3.8",
     28 + "Topic :: Internet",
     29 + "Topic :: Multimedia :: Video :: Capture",
     30 + "Topic :: Security",
     31 + "Topic :: Utilities",
     32 + ],
     33 + keywords="netstalking rtsp brute cctv",
     34 + project_urls={
     35 + "Source": "https://gitlab.com/woolf/RTSPbrute",
     36 + "Tracker": "https://gitlab.com/woolf/RTSPbrute/-/issues",
     37 + },
     38 + packages=setuptools.find_packages(),
     39 + install_requires=["av<9", "Pillow<8", "rich<6"],
     40 + python_requires=">=3.7",
     41 + package_data={"rtspbrute": ["credentials.txt", "routes.txt"],},
     42 + entry_points={"console_scripts": ["rtspbrute = rtspbrute.__main__:main"]},
     43 +)
     44 + 
Please wait...
Page is in error, reload to recover