mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-02-16 01:22:02 +00:00
![matejcik](/assets/img/avatar_default.png)
This deserves some explanation. * tests were moved to separate python/tests subdir * trezorlib was moved to python/src, so that it does not exist on PYTHONPATH by default (see https://blog.ionelmc.ro/2014/05/25/python-packaging/ for details) * everything was updated to understand the new structure * trezorctl was changed from a top-level executable script to a module `trezorlib.cli.trezorctl` and is installed via the entry_points mechanism. This should make it work normally on Windows! The package should be installable as normal through pip and pipenv, no changes are needed on that side. The source package from pypi will include unit tests. (Device tests were completely moved out). Wheel will exclude them, because users don't need them. That shrinks the .whl from 520 kB to 270 - nice! python: reorganize remaining unit tests
84 lines
2.3 KiB
Python
Executable File
84 lines
2.3 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
import os.path
|
|
import re
|
|
from distutils.errors import DistutilsError
|
|
|
|
from setuptools import Command, find_packages, setup
|
|
|
|
install_requires = [
|
|
"setuptools>=19.0",
|
|
"ecdsa>=0.9",
|
|
"mnemonic>=0.17",
|
|
"shamir-mnemonic>=0.1.0",
|
|
"requests>=2.4.0",
|
|
"click>=7,<8",
|
|
"pyblake2>=0.9.3",
|
|
"libusb1>=1.6.4",
|
|
"construct>=2.9",
|
|
"typing_extensions>=3.6",
|
|
]
|
|
|
|
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()
|
|
|
|
|
|
def find_version():
|
|
version_file = read("src", "trezorlib", "__init__.py")
|
|
version_match = re.search(r"^__version__ = \"(.*)\"$", version_file, re.M)
|
|
if version_match:
|
|
return version_match.group(1)
|
|
else:
|
|
raise RuntimeError("Version string not found")
|
|
|
|
|
|
class PrebuildCommand(Command):
|
|
description = "Deprecated. Run 'make gen' instead."
|
|
user_options = []
|
|
|
|
def initialize_options(self):
|
|
pass
|
|
|
|
def finalize_options(self):
|
|
pass
|
|
|
|
def run(self):
|
|
raise DistutilsError(self.description)
|
|
|
|
|
|
setup(
|
|
name="trezor",
|
|
version=find_version(),
|
|
author="Trezor",
|
|
author_email="info@trezor.io",
|
|
license="LGPLv3",
|
|
description="Python library for communicating with Trezor Hardware Wallet",
|
|
long_description="{}\n\n{}".format(read("README.md"), read("CHANGELOG.md")),
|
|
long_description_content_type="text/markdown",
|
|
url="https://github.com/trezor/python-trezor",
|
|
packages=find_packages("src"),
|
|
package_dir={"": "src"},
|
|
package_data={"trezorlib": ["coins.json"]},
|
|
entry_points={"console_scripts": ["trezorctl=trezorlib.cli.trezorctl:cli"]},
|
|
install_requires=install_requires,
|
|
extras_require={
|
|
"hidapi": ["hidapi>=0.7.99.post20"],
|
|
"ethereum": ["rlp>=1.1.0", "web3>=4.8"],
|
|
},
|
|
python_requires=">=3.5",
|
|
include_package_data=True,
|
|
zip_safe=False,
|
|
classifiers=[
|
|
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
|
|
"Operating System :: POSIX :: Linux",
|
|
"Operating System :: Microsoft :: Windows",
|
|
"Operating System :: MacOS :: MacOS X",
|
|
"Programming Language :: Python :: 3 :: Only",
|
|
],
|
|
cmdclass={"prebuild": PrebuildCommand},
|
|
)
|