Skip to content

Commit

Permalink
trim README
Browse files Browse the repository at this point in the history
  • Loading branch information
jmelahman committed Dec 30, 2024
1 parent 0684d91 commit ba76bae
Showing 1 changed file with 5 additions and 32 deletions.
37 changes: 5 additions & 32 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,22 +12,6 @@ A Python library for generating platform-specific tags for Golang packages and b
- Support for multiple architectures and operating systems
- Helpful for creating wheel distributions and managing platform-specific builds

## Supported Platforms

### Operating Systems
- Darwin (macOS)
- Linux
- Windows

### Architectures
- x86_64 (amd64)
- ARM64 (aarch64)
- 32-bit x86 (386)
- ARM (armv7l)
- s390x
- PowerPC 64-bit Little Endian (ppc64le)
- PowerPC 64-bit (ppc64)

## Installation

```bash
Expand All @@ -37,21 +21,10 @@ pip install manygo
## Usage

```python
from manygo import get_platform_tag

# Get platform tag for Linux on x86_64
tag = get_platform_tag('linux', 'amd64')
print(tag) # Outputs: 'manylinux_2_17_x86_64'
>>> import manygo
>>> manygo.get_platform_tag('linux', 'amd64')
'manylinux_2_17_x86_64'

# Get platform tag for macOS on ARM64
tag = get_platform_tag('darwin', 'arm64')
print(tag) # Outputs: 'macosx_11_0_arm64'
>>> manygo.get_platform_tag('darwin', 'arm64')
'macosx_11_0_arm64'
```

## Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

## License

This project is licensed under the MIT License.

0 comments on commit ba76bae

Please sign in to comment.