From a0a69a1823dc136bb17d1271af01961555279643 Mon Sep 17 00:00:00 2001 From: Dov Benyomin Sohacheski Date: Thu, 8 Dec 2022 09:20:55 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=9A=20Replacing=20author=20details=20a?= =?UTF-8?q?fter=20transfer?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- LICENSE | 2 +- README.md | 8 +++++--- pyproject.toml | 7 +++++-- 3 files changed, 11 insertions(+), 6 deletions(-) diff --git a/LICENSE b/LICENSE index 6dd4c6d..6547a8c 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2022 Peter Výboch +Copyright (c) 2022 Dov Benyomin Sohacheski Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index bc8ae9f..9848547 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Expycted -[![Build and Test Python Package](https://github.com/petereon/expycted/actions/workflows/python-package.yml/badge.svg)](https://github.com/petereon/expycted/actions/workflows/python-package.yml) +[![Build and Test Python Package](https://github.com/bdsoha/expycted/actions/workflows/python-package.yml/badge.svg)](https://github.com/petereon/expycted/actions/workflows/python-package.yml) __Table of Contents__ @@ -36,6 +36,8 @@ expect(10).to.be("10") # This will succ expect.function(int).to_raise(ValueError).when_called_with('a') # This will also succeed ``` +**This package was originally written by @petereon, many thanks!** + ## Installation __Expycted__ can be installed from [PyPi](https://pypi.org/project/expycted/) by running: @@ -45,7 +47,7 @@ pip install expycted Alternatively, you can clone the repository and build your own distribution using poetry: ```sh -git clone https://github.com/petereon/expycted.git +git clone https://github.com/bdsoha/expycted.git poetry build ``` Then you can install it using: @@ -236,7 +238,7 @@ For development a combination of `poetry` and `pipenv` is used. `pipenv` is used To begin developing run the following commands in your terminal: ```sh # Clone the repository -git clone https://github.com/petereon/expycted.git +git clone https://github.com/bdsoha/expycted.git # Install dependencies pipenv install diff --git a/pyproject.toml b/pyproject.toml index feb9c46..d34fde8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,9 +2,12 @@ name = "expycted" version = "0.8.1" description = "Because tests should be easy to read" -authors = ["Petereon "] +authors = [ + "Dov Benyomin Sohacheski", + "Petereon " +] license = "MIT" -repository = 'https://github.com/petereon/expycted' +repository = 'https://github.com/bdsoha/expycted' readme = 'PYPIREADME.md' keywords = ['expect', 'expect-pattern', 'testing', 'test', 'matchers'] classifiers = [