Skip to content

Commit

Permalink
Merge pull request #55 from prestwich/master
Browse files Browse the repository at this point in the history
fix packaging issue
  • Loading branch information
prestwich authored May 23, 2018
2 parents c100592 + 7fcaea3 commit ec152b2
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,17 +1,17 @@
# flake8: noqa

from setuptools import setup
from setuptools import setup, find_packages

setup(
name='riemann-tx',
version='0.10.0',
version='0.10.1',
description=('Transaction creation library for Bitcoin-like coins'),
url='https://github.com/summa-tx/riemann',
author='James Prestwich',
author_email='[email protected]',
license='LGPLv3.0',
install_requires=[],
packages=['riemann'],
packages=find_packages(),
package_dir={'riemann': 'riemann'},
keywords = 'bitcoin litecoin cryptocurrency decred blockchain development',
classifiers = [
Expand Down

0 comments on commit ec152b2

Please sign in to comment.