Metadata-Version: 2.4
Name: ffproto
Version: 1.0.2
Summary: Encryption/decryption library for Free Fire HTTP protobuf payloads
Home-page: https://github.com/yourusername/ffproto
Author: Eren Yeager
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: pycryptodome>=3.9.0
Requires-Dist: protobuf>=3.0.0
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

from setuptools import setup, find_packages

with open("README.md", "r", encoding="utf-8") as fh:
    long_description = fh.read()

setup(
    name="ffproto",
    version="1.0.0",
    author="Eren",
    description="Encryption/decryption library for Free Fire HTTP protobuf payloads",
    long_description=long_description,
    long_description_content_type="text/markdown",
    url="https://github.com/yourusername/ffproto",
    packages=find_packages(),
    classifiers=[
        "Programming Language :: Python :: 3",
        "License :: OSI Approved :: MIT License",
        "Operating System :: OS Independent",
    ],
    python_requires=">=3.6",
    install_requires=[
        "pycryptodome>=3.9.0",
        "protobuf>=3.0.0",
    ],
)
