Skip to content

Commit

Permalink
add python markers, enable universal wheels
Browse files Browse the repository at this point in the history
  • Loading branch information
matejcik committed Oct 4, 2019
1 parent 3535219 commit 39ee5e4
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
2 changes: 2 additions & 0 deletions setup.cfg
@@ -0,0 +1,2 @@
[bdist_wheel]
universal = 1
13 changes: 13 additions & 0 deletions setup.py
@@ -1,12 +1,23 @@
#!/usr/bin/env python
import os
from setuptools import setup

CWD = os.path.dirname(os.path.realpath(__file__))


def read(*path):
filename = os.path.join(CWD, *path)
with open(filename, "r") as f:
return f.read()


setup(
name="mnemonic",
version="0.19",
author="Trezor",
author_email="info@trezor.io",
description="Implementation of Bitcoin BIP-0039",
long_description=read("README.rst"),
url="https://github.com/trezor/python-mnemonic",
packages=["mnemonic"],
package_data={"mnemonic": ["wordlist/*.txt"]},
Expand All @@ -16,5 +27,7 @@
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
],
)

0 comments on commit 39ee5e4

Please sign in to comment.