Metadata-Version: 2.4
Name: fd-compresser
Version: 2.0.1
Summary: Профессиональный инструмент для сжатия и оптимизации файлов
Home-page: https://github.com/DANIEL45690/FD-Compresser
Author: Lamskov Daniel
Author-email: lamskov.daniel@mail.ru
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: System :: Archiving
Classifier: Topic :: System :: Filesystems
Classifier: Topic :: Utilities
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: tqdm>=4.64.0
Requires-Dist: Pillow>=9.0.0
Requires-Dist: cssmin>=0.2.0
Requires-Dist: jsmin>=3.0.0
Provides-Extra: full
Requires-Dist: Pillow>=9.0.0; extra == "full"
Requires-Dist: cssmin>=0.2.0; extra == "full"
Requires-Dist: jsmin>=3.0.0; extra == "full"
Requires-Dist: tqdm>=4.64.0; extra == "full"
Provides-Extra: images
Requires-Dist: Pillow>=9.0.0; extra == "images"
Provides-Extra: minify
Requires-Dist: cssmin>=0.2.0; extra == "minify"
Requires-Dist: jsmin>=3.0.0; extra == "minify"
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: provides-extra
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="optimus-archive",
    version="2.0.0",
    author="Lamskov Daniel",
    author_email="https://preview-fce-8jqlp4aqox1fdguuy.lork.dev",
    description="Профессиональный инструмент для сжатия и оптимизации файлов",
    long_description=long_description,
    long_description_content_type="text/markdown",
    url="https://github.com/yourusername/optimus-archive",
    packages=find_packages(),
    classifiers=[
        "Development Status :: 5 - Production/Stable",
        "Intended Audience :: Developers",
        "License :: OSI Approved :: MIT License",
        "Operating System :: OS Independent",
        "Programming Language :: Python :: 3",
        "Programming Language :: Python :: 3.7",
        "Programming Language :: Python :: 3.8",
        "Programming Language :: Python :: 3.9",
        "Programming Language :: Python :: 3.10",
        "Programming Language :: Python :: 3.11",
    ],
    python_requires=">=3.7",
    install_requires=[
        "tqdm>=4.64.0",
    ],
    extras_require={
        "full": ["Pillow>=9.0.0", "cssmin>=0.2.0", "jsmin>=3.0.0"],
        "images": ["Pillow>=9.0.0"],
        "minify": ["cssmin>=0.2.0", "jsmin>=3.0.0"],
    },
    entry_points={
        "console_scripts": [
            "optimus=optimus.cli:main",
            "optimus-archive=optimus.cli:main",
        ],
    },
    include_package_data=True,
    zip_safe=False,
)
