from setuptools import setup, find_packages with open("README.md") as f: long_desc = f.read() setup( name="fsi_felon", version="4.0.0", description="FSI_FELON v4.0 — Self-Architecting Synthetic Intelligence with Chimera Engine, IDE, P2P Mesh, and Android Device Builder", long_description=long_desc, long_description_content_type="text/markdown", author="James Ferrell / FerrellSyntheticIntelligence", author_email="ferrellsyntheticintelligence@proton.me", url="https://github.com/AnonymousNomad/FSI_FELON", project_urls={ "HuggingFace": "https://huggingface.co/FerrellSyntheticIntelligence/FSI_FELON", "Source": "https://github.com/AnonymousNomad/FSI_FELON", "MISSION": "https://github.com/AnonymousNomad/FSI_FELON/blob/master/MISSION.md", }, packages=find_packages(include=["chimera", "chimera.*", "ide", "ide.*"]), py_modules=["mesh_repo", "fsi_sandbox", "rabbit", "android_compiler", "train_monitor"], install_requires=[ "numpy>=1.24", ], extras_require={ "full": [ "requests", ], "dev": [ "requests", "aiohttp", ], }, python_requires=">=3.10", classifiers=[ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "Intended Audience :: Science/Research", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.10", "Topic :: Software Development :: Code Generators", "Topic :: Scientific/Engineering :: Artificial Intelligence", "Topic :: System :: Distributed Computing", ], include_package_data=True, zip_safe=False, )