Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 4 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,24 +10,16 @@ Targeted at researchers in algorithmic model theory and curious practitioners al
- **First-order logic interface** for formal queries
- **Visualization tools** for insight into infinite structures

### Installation with `uv`
Here's how to install AutStr using `uv`, the high-performance Python package installer:

#### Install with `uv` from local clone
### Installation

```bash
git clone https://github.com/fariedabuzaid/AutStr.git
cd AutStr

# Install core package
uv lock
uv sync
pip install autstr
```

#### Verify Installation
```bash
uv run python -c "from autstr import __version__; print(f'AutStr v{__version__} installed')"
# Should output: AutStr v0.1 installed
python -c "from autstr import __version__; print(f'AutStr v{__version__} installed')"
# Should output: AutStr v1.0.1 installed
```

## Getting started
Expand Down
2 changes: 2 additions & 0 deletions autstr/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# autstr/__init__.py
from ._version import __version__
2 changes: 2 additions & 0 deletions autstr/_version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# autstr/_version.py
__version__ = "1.0.1"
11 changes: 10 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "autstr"
version = "1.0.0"
version = "1.0.1"
description = "Library for working with finitely presentable infinite structures"
authors = [
{ name = "Faried Abu Zaid", email = "fariedaz@gmail.com" }
Expand Down Expand Up @@ -35,3 +35,12 @@ packages = ["autstr"]
[tool.uv]
build-system = "setuptools"
packages = ["autstr", "autstr.utils"]

[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "semver"

[tool.poetry-dynamic-versioning.substitution]
files = ["autstr/_version.py"]
pattern = '__version__ = ".*"'
Loading