Skip to content

Commit

Permalink
setup
Browse files Browse the repository at this point in the history
  • Loading branch information
davebryson committed Jul 3, 2021
1 parent 741f759 commit 7bcee54
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

from setuptools import setup
from setuptools import setup, find_packages

LONG_DESC = """\
Build Tendermint blockchain applications in Python. It's fun
Expand All @@ -13,7 +13,7 @@

setup(
name="abci",
version="0.8.0",
version="0.8.1",
description="Python based ABCI Server for Tendermint",
long_description=LONG_DESC,
url="https://github.com/davebryson/py-abci",
Expand All @@ -26,7 +26,7 @@
"Programming Language :: Python :: 3.9",
],
keywords="blockchain tendermint abci",
packages=["abci", "example"],
packages=find_packages(exclude=["tests"]),
install_requires=[
"protobuf>=3.6.1",
"colorlog>=3.1.4",
Expand Down

0 comments on commit 7bcee54

Please sign in to comment.