Skip to content

Commit 386bae4

Browse files
mflaxmanMichael Flaxman
and
Michael Flaxman
authored
package neccesary txt data into pypi repo (#57)
Co-authored-by: Michael Flaxman <[email protected]>
1 parent 2b6200f commit 386bae4

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

MANIFEST.in

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
include buidl/bip39_words.txt
2+
include buidl/slip39_words.txt

clean.sh

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
#! /usr/bin/env bash
2+
3+
set -o xtrace
14
rm -rf .venv3/
25
rm -rf dist/
36
rm -rf build/

setup.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
11
from setuptools import setup, find_packages
22

3+
34
with open("README.md", "r") as fh:
45
long_description = fh.read()
56

67
setup(
78
name="buidl",
8-
version="0.2.13",
9+
version="0.2.14",
910
author="Example Author",
1011
author_email="[email protected]",
1112
description="An easy-to-use and fully featured bitcoin library written in pure python (no dependencies).",
1213
long_description=long_description,
1314
long_description_content_type="text/markdown",
1415
url="https://github.com/buidl-bitcoin/buidl-python",
1516
packages=find_packages(),
17+
include_package_data=True, # https://stackoverflow.com/a/56689053
1618
scripts=["multiwallet.py"], # hack to not require installation
1719
classifiers=[
1820
"Programming Language :: Python :: 3",

0 commit comments

Comments
 (0)