Skip to content

Commit

Permalink
🚚 Replacing author details after transfer
Browse files Browse the repository at this point in the history
  • Loading branch information
bdsoha authored Dec 8, 2022
1 parent 9ec96b4 commit a0a69a1
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -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
Expand Down
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -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__

Expand Down Expand Up @@ -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:
Expand All @@ -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:
Expand Down Expand Up @@ -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
Expand Down
7 changes: 5 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,12 @@
name = "expycted"
version = "0.8.1"
description = "Because tests should be easy to read"
authors = ["Petereon <[email protected]>"]
authors = [
"Dov Benyomin Sohacheski",
"Petereon <[email protected]>"
]
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 = [
Expand Down

0 comments on commit a0a69a1

Please sign in to comment.