I already have an account on Pypi but the project needs to be reorganized.
Help is really appreciated!
I would like to call the project RMS-Runtime-Mobile-Security and run it via the same keyword or, if it is not possible, via something like rms.
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="RMS-Runtime-Mobile-Security",
version="1.3.2",
author="@mobilesecurity_",
author_email="rmsmobilesec@gmail.com",
description="Runtime Mobile Security (RMS) is a powerful web interface that helps you to manipulate Android Java Classes and Methods at Runtime",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/m0bilesecurity/RMS-Runtime-Mobile-Security",
packages=setuptools.find_packages(),
include_package_data=True,
keywords = [
"MobileSecurity",
"AndroidSecurity",
"frida",
"Reverse-Engineering"
],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Framework :: Flask",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Topic :: Security"
],
python_requires='>=3.6',
)
I already have an account on Pypi but the project needs to be reorganized. Help is really appreciated! I would like to call the project RMS-Runtime-Mobile-Security and run it via the same keyword or, if it is not possible, via something like rms.