-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #55 from prestwich/master
fix packaging issue
- Loading branch information
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 = [ | ||
|