Update README.md and setup.py

This commit is contained in:
michaelhly 2020-10-01 10:58:28 -05:00
parent 135c770dcf
commit c7a7d61f01
2 changed files with 6 additions and 1 deletions

View File

@ -6,6 +6,11 @@ Status](https://github.com/serum-community/pyserum/workflows/CI/badge.svg)](http
Python client library for interacting with the [Project Serum](https://projectserum.com/) DEX.
## Install
```sh
pip install pyserum
```
## Get Started
```python

View File

@ -15,7 +15,7 @@ setup(
python_requires=">=3.7, <4",
license="MIT",
package_data={"pyserum": ["py.typed"]},
packages=find_packages(exclude=("tests", "test.*")),
packages=find_packages(exclude=("tests", "tests.*")),
url="https://github.com/serum-community/pyserum",
zip_safe=False, # required per mypy
classifiers=[