from setuptools import setup, find_packages

setup(
    name="xcrossfire",
    version="1.0.0",
    author="XCrossFire Devs",
    description="Ultra High-Performance SIMD AVX2 Assisted Search Engine for Python",
    # Yeh lines README aur LICENSE ko pack karne ke liye zaroori hain
    long_description=open('README.md', encoding='utf-8').read(),
    long_description_content_type='text/markdown',
    license='MIT',
    
    packages=find_packages(),
    package_data={
        "xcrossfire": ["xcrossfire.dll"],
    },
    include_package_data=True,
    classifiers=[
        "Programming Language :: Python :: 3",
        "License :: OSI Approved :: MIT License",
        "Operating System :: Microsoft :: Windows",
    ],
    python_requires=">=3.8",
    install_requires=[
        "numpy>=1.20.0",
    ],
)