Skip to content

Commit 8b79f62

Browse files
committed
remove pyatlas.io domain
1 parent 9d2c200 commit 8b79f62

4 files changed

Lines changed: 9 additions & 6 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
# PyAtlas
22

33
<p align="center">
4-
<a href="https://pyatlas.io">
4+
<a href="https://fpgmaas.github.io/pyatlas/">
55
<img src="public/screenshot.png" alt="Screenshot of PyAtlas" width="699">
66
</a>
77
</p>
88

99
<p align="center">
10-
<strong>👉 <a href="https://pyatlas.io">Explore the map at pyatlas.io</a></strong>
10+
<strong>👉 <a href="https://fpgmaas.github.io/pyatlas/">Explore the map</a></strong>
1111
</p>
1212

1313
## What does this do?
1414

15-
[PyAtlas](https://pyatlas.io) is an interactive map of the top 10,000 Python packages on [PyPI](https://pypi.org/). Packages with similar functionality are positioned close together, making it easy to discover alternatives or related tools. It’s mainly just a fun tech demo and hobby project, but it can also be a handy way to discover useful packages. For example, if you want to find packages similar to `matplotlib`, you can locate it on the map and explore the packages clustered around it.
15+
[PyAtlas](https://fpgmaas.github.io/pyatlas/) is an interactive map of the top 10,000 Python packages on [PyPI](https://pypi.org/). Packages with similar functionality are positioned close together, making it easy to discover alternatives or related tools. It’s mainly just a fun tech demo and hobby project, but it can also be a handy way to discover useful packages. For example, if you want to find packages similar to `matplotlib`, you can locate it on the map and explore the packages clustered around it.
1616

1717
## How does this work?
1818

frontend/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
property="og:description"
2020
content="Explore Python packages on an interactive 2D map"
2121
/>
22-
<meta property="og:image" content="https://pyatlas.io/screenshot.png" />
22+
<meta property="og:image" content="https://fpgmaas.github.io/pyatlas/screenshot.png" />
2323

2424
<!-- Twitter Card -->
2525
<meta name="twitter:card" content="summary_large_image" />
@@ -28,7 +28,7 @@
2828
name="twitter:description"
2929
content="Explore Python packages on an interactive 2D map"
3030
/>
31-
<meta name="twitter:image" content="https://pyatlas.io/screenshot.png" />
31+
<meta name="twitter:image" content="https://fpgmaas.github.io/pyatlas/screenshot.png" />
3232
</head>
3333
<body>
3434
<div id="root"></div>

frontend/vite.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ import glsl from "vite-plugin-glsl";
66
// https://vite.dev/config/
77
export default defineConfig({
88
plugins: [react(), tailwindcss(), glsl()],
9-
base: "/",
9+
base: "/pyatlas/",
1010
});

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,3 +125,6 @@ DEP003 = ["marimo"]
125125

126126
[tool.ty.environment]
127127
root = ["./pyatlas"]
128+
129+
[tool.deppy]
130+
extend_exclude = ["docs", "tests", "notebooks"]

0 commit comments

Comments
 (0)