Skip to content

Commit f5697ff

Browse files
committed
chore: reorganize top-level directory
1 parent e218cb6 commit f5697ff

16 files changed

+11
-3
lines changed

MANIFEST.in

+6-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,6 @@
1-
include LICENSE
1+
include tools/*
2+
graft src
3+
graft tests
4+
5+
include AUTHORS LICENSE README.rst CHANGELOG.rst
6+
include tox.ini

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@
1818
),
1919
url="https://github.com/trezor/python-mnemonic",
2020
packages=["mnemonic"],
21-
package_data={"mnemonic": ["wordlist/*.txt", "py.typed"]},
21+
package_dir={"": "src"},
22+
include_package_data=True,
2223
zip_safe=False,
2324
python_requires=">=3.5",
2425
classifiers=[
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

tox.ini

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,10 @@ envlist =
44
py36,
55
py37,
66
py38,
7+
py39,
8+
py310,
79
pypy,
810

911
[testenv]
1012
commands =
11-
python test_mnemonic.py
13+
python tests/test_mnemonic.py

0 commit comments

Comments
 (0)