Skip to content

Commit ed35b4b

Browse files
authored
Merge pull request #42 from PolymathicAI/pypi_improvements
Pypi improvements
2 parents 7a1d2af + 5610a0f commit ed35b4b

File tree

2 files changed

+41
-2
lines changed

2 files changed

+41
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ All of the ensuing steps should work out of the box after this point.
4343

4444
Assuming you have PyTorch installed, you can install AION trivially with:
4545
```bash
46-
pip install aion
46+
pip install polymathic-aion
4747
```
4848

4949
Then you can load the pretrained model and start analyzing astronomical data:

pyproject.toml

Lines changed: 40 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,39 @@ build-backend = "setuptools.build_meta"
55
[project]
66
name = "polymathic-aion"
77
dynamic = ["version"]
8-
description = "AstronomIcal Omnimodal Network"
8+
description = "AstronomIcal Omnimodal Network - Polymathic's Large Omnimodal Model for Astronomy"
9+
readme = "README.md"
910
requires-python = ">=3.10"
11+
license = {text = "MIT"}
12+
authors = [
13+
{name = "Polymathic AI", email = "info@polymathic-ai.org"},
14+
]
15+
maintainers = [
16+
{name = "Polymathic AI", email = "info@polymathic-ai.org"},
17+
]
18+
keywords = [
19+
"astronomy",
20+
"astrophysics",
21+
"machine learning",
22+
"transformer",
23+
"multimodal",
24+
"deep learning",
25+
"scientific computing",
26+
"AI",
27+
]
28+
classifiers = [
29+
"Development Status :: 4 - Beta",
30+
"Intended Audience :: Science/Research",
31+
"License :: OSI Approved :: MIT License",
32+
"Operating System :: OS Independent",
33+
"Programming Language :: Python :: 3",
34+
"Programming Language :: Python :: 3.10",
35+
"Programming Language :: Python :: 3.11",
36+
"Programming Language :: Python :: 3.12",
37+
"Topic :: Scientific/Engineering :: Astronomy",
38+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
39+
"Topic :: Scientific/Engineering :: Physics",
40+
]
1041
dependencies = [
1142
"einops>=0.7.0",
1243
"huggingface_hub>=0.24.7",
@@ -16,6 +47,14 @@ dependencies = [
1647
"tokenizers>=0.15.2",
1748
]
1849

50+
[project.urls]
51+
Homepage = "https://polymathic-ai.org/"
52+
Documentation = "https://polymathic-ai.github.io/AION/"
53+
Repository = "https://github.com/PolymathicAI/AION"
54+
"Bug Tracker" = "https://github.com/PolymathicAI/AION/issues"
55+
"Discussion" = "https://github.com/PolymathicAI/AION/discussions"
56+
"Hugging Face" = "https://huggingface.co/polymathic-ai/aion-base"
57+
1958
[project.optional-dependencies]
2059
torch = [
2160
"torch>=2.4.0",

0 commit comments

Comments
 (0)