Skip to content

Commit

Permalink
Update links to Kludex (#102)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kludex authored Feb 10, 2024
1 parent 3035c45 commit 6181731
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 34 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Python package
name: CI

on:
push:
Expand Down
23 changes: 23 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Python-Multipart

[![Build Status](https://github.com/Kludex/python-multipart/workflows/CI/badge.svg)](https://github.com/Kludex/python-multipart/actions)
[![Package version](https://badge.fury.io/py/python-multipart.svg)](https://pypi.python.org/pypi/python-multipart)
[![Supported Python Version](https://img.shields.io/pypi/pyversions/python-multipart.svg?color=%2334D058)](https://pypi.org/project/python-multipart)

---

`python-multipart` is an Apache2 licensed streaming multipart parser for Python.
Test coverage is currently 100%.

## Why?

Because streaming uploads are awesome for large files.

## How to Test

If you want to test:

```bash
$ pip install '.[dev]'
$ inv test
```
28 changes: 0 additions & 28 deletions README.rst

This file was deleted.

13 changes: 8 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,13 @@ build-backend = "hatchling.build"
name = "python-multipart"
dynamic = ["version"]
description = "A streaming multipart parser for Python"
readme = "README.rst"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.8"
authors = [{ name = "Andrew Dunham", email = "[email protected]" }]
authors = [
{ name = "Andrew Dunham", email = "[email protected]" },
{ name = "Marcelo Trylesinski", email = "[email protected]" },
]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
Expand Down Expand Up @@ -46,10 +49,10 @@ dev = [
]

[project.urls]
Homepage = "https://github.com/andrew-d/python-multipart"
Homepage = "https://github.com/Kludex/python-multipart"
Documentation = "https://andrew-d.github.io/python-multipart/"
Changelog = "https://github.com/andrew-d/python-multipart/blob/master/CHANGELOG.md"
Source = "https://github.com/andrew-d/python-multipart"
Changelog = "https://github.com/Kludex/python-multipart/blob/master/CHANGELOG.md"
Source = "https://github.com/Kludex/python-multipart"

[tool.hatch.version]
path = "multipart/__init__.py"
Expand Down

0 comments on commit 6181731

Please sign in to comment.