File tree 3 files changed +8
-1
lines changed
3 files changed +8
-1
lines changed Original file line number Diff line number Diff line change
1
+ include buidl/bip39_words.txt
2
+ include buidl/slip39_words.txt
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+
3
+ set -o xtrace
1
4
rm -rf .venv3/
2
5
rm -rf dist/
3
6
rm -rf build/
Original file line number Diff line number Diff line change 1
1
from setuptools import setup , find_packages
2
2
3
+
3
4
with open ("README.md" , "r" ) as fh :
4
5
long_description = fh .read ()
5
6
6
7
setup (
7
8
name = "buidl" ,
8
- version = "0.2.13 " ,
9
+ version = "0.2.14 " ,
9
10
author = "Example Author" ,
10
11
11
12
description = "An easy-to-use and fully featured bitcoin library written in pure python (no dependencies)." ,
12
13
long_description = long_description ,
13
14
long_description_content_type = "text/markdown" ,
14
15
url = "https://github.com/buidl-bitcoin/buidl-python" ,
15
16
packages = find_packages (),
17
+ include_package_data = True , # https://stackoverflow.com/a/56689053
16
18
scripts = ["multiwallet.py" ], # hack to not require installation
17
19
classifiers = [
18
20
"Programming Language :: Python :: 3" ,
You can’t perform that action at this time.
0 commit comments