File size: 1,766 Bytes
33a0635 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | 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,
)
|