diff --git a/README.md b/README.md index f0488da..7cba9a0 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ All of the ensuing steps should work out of the box after this point. Assuming you have PyTorch installed, you can install AION trivially with: ```bash -pip install aion +pip install polymathic-aion ``` Then you can load the pretrained model and start analyzing astronomical data: diff --git a/pyproject.toml b/pyproject.toml index 0eb0a14..99185a7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,8 +5,39 @@ build-backend = "setuptools.build_meta" [project] name = "polymathic-aion" dynamic = ["version"] -description = "AstronomIcal Omnimodal Network" +description = "AstronomIcal Omnimodal Network - Polymathic's Large Omnimodal Model for Astronomy" +readme = "README.md" requires-python = ">=3.10" +license = {text = "MIT"} +authors = [ + {name = "Polymathic AI", email = "info@polymathic-ai.org"}, +] +maintainers = [ + {name = "Polymathic AI", email = "info@polymathic-ai.org"}, +] +keywords = [ + "astronomy", + "astrophysics", + "machine learning", + "transformer", + "multimodal", + "deep learning", + "scientific computing", + "AI", +] +classifiers = [ + "Development Status :: 4 - Beta", + "Intended Audience :: Science/Research", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Topic :: Scientific/Engineering :: Astronomy", + "Topic :: Scientific/Engineering :: Artificial Intelligence", + "Topic :: Scientific/Engineering :: Physics", +] dependencies = [ "einops>=0.7.0", "huggingface_hub>=0.24.7", @@ -16,6 +47,14 @@ dependencies = [ "tokenizers>=0.15.2", ] +[project.urls] +Homepage = "https://polymathic-ai.org/" +Documentation = "https://polymathic-ai.github.io/AION/" +Repository = "https://github.com/PolymathicAI/AION" +"Bug Tracker" = "https://github.com/PolymathicAI/AION/issues" +"Discussion" = "https://github.com/PolymathicAI/AION/discussions" +"Hugging Face" = "https://huggingface.co/polymathic-ai/aion-base" + [project.optional-dependencies] torch = [ "torch>=2.4.0",