Skip to content

Commit 6361ef5

Browse files
committed
Migrate to use uv, update pyproject.toml
1 parent de09232 commit 6361ef5

5 files changed

Lines changed: 4038 additions & 5447 deletions

File tree

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ It streamlines the process of aggregation, standardization, and utilization of d
2525

2626
## Installation
2727

28-
The package can be installed using poetry:
28+
The package can be installed using uv:
2929

3030
```bash
31-
python3 -m poetry install
32-
source $(poetry env info --path)/bin/activate
31+
uv sync
32+
source .venv/bin/activate
3333
```
3434

3535
## Datasets
@@ -68,17 +68,17 @@ These tasks are all facilitated through the `DataCollatorForAtomModeling` class
6868
### Installing dependencies
6969

7070
The development environment can be set up using
71-
[poetry](https://python-poetry.org/docs/#installation). Hence, make sure it is
71+
[uv](https://docs.astral.sh/uv/). Hence, make sure it is
7272
installed and then run:
7373

7474
```bash
75-
python3 -m poetry install
76-
source $(poetry env info --path)/bin/activate
75+
uv sync
76+
source .venv/bin/activate
7777
```
7878

7979
In order to install dependencies for testing (codestyle, unit tests, integration tests),
8080
run:
8181

8282
```bash
83-
python3 -m poetry install --with test
83+
uv sync --group test
8484
```

docs/source/user_guide.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ Welcome to the AtomGen User Guide. This document provides comprehensive instruct
1515

1616
## Installation
1717

18-
The package can be installed using poetry:
18+
The package can be installed using uv:
1919

2020
```bash
21-
python3 -m poetry install
22-
source $(poetry env info --path)/bin/activate
21+
uv sync
22+
source .venv/bin/activate
2323
```
2424

2525
## Quick Start

0 commit comments

Comments
 (0)