2018-02-02 15:36:29 +00:00
|
|
|
#!/usr/bin/env python3
|
2018-03-26 15:38:49 +00:00
|
|
|
import os.path
|
2018-07-03 13:53:16 +00:00
|
|
|
import re
|
2018-03-26 15:38:49 +00:00
|
|
|
|
2020-03-04 12:40:10 +00:00
|
|
|
from setuptools import find_packages, setup
|
2014-02-03 21:24:54 +00:00
|
|
|
|
2017-06-14 21:06:54 +00:00
|
|
|
install_requires = [
|
2018-09-03 13:44:38 +00:00
|
|
|
"setuptools>=19.0",
|
|
|
|
"ecdsa>=0.9",
|
|
|
|
"mnemonic>=0.17",
|
|
|
|
"requests>=2.4.0",
|
2021-07-28 10:37:19 +00:00
|
|
|
"click>=7,<9",
|
2018-09-03 13:44:38 +00:00
|
|
|
"libusb1>=1.6.4",
|
|
|
|
"construct>=2.9",
|
2019-08-09 12:11:03 +00:00
|
|
|
"typing_extensions>=3.7.4",
|
2019-08-09 12:10:28 +00:00
|
|
|
"pyblake2>=0.9.3 ; python_version<'3.6'",
|
2020-09-01 09:04:20 +00:00
|
|
|
"attrs",
|
2017-06-14 21:06:54 +00:00
|
|
|
]
|
2016-10-03 18:37:48 +00:00
|
|
|
|
2020-09-01 09:04:20 +00:00
|
|
|
extras_require = {
|
|
|
|
"hidapi": ["hidapi>=0.7.99.post20"],
|
|
|
|
"ethereum": ["rlp>=1.1.0", "web3>=4.8"],
|
|
|
|
"qt-widgets": ["PyQt5"],
|
|
|
|
"extra": ["Pillow"],
|
2021-07-29 07:19:05 +00:00
|
|
|
"stellar": ["stellar-sdk>=4.0.0,<5.0.0"],
|
2020-09-01 09:04:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
extras_require["full"] = sum(extras_require.values(), [])
|
|
|
|
|
2018-05-30 13:04:46 +00:00
|
|
|
CWD = os.path.dirname(os.path.realpath(__file__))
|
|
|
|
|
2018-03-26 15:38:49 +00:00
|
|
|
|
2018-07-03 13:53:16 +00:00
|
|
|
def read(*path):
|
|
|
|
filename = os.path.join(CWD, *path)
|
2018-09-03 13:44:38 +00:00
|
|
|
with open(filename, "r") as f:
|
2018-06-19 14:54:54 +00:00
|
|
|
return f.read()
|
|
|
|
|
|
|
|
|
2018-07-03 13:53:16 +00:00
|
|
|
def find_version():
|
2019-08-06 14:26:23 +00:00
|
|
|
version_file = read("src", "trezorlib", "__init__.py")
|
2018-07-03 13:53:16 +00:00
|
|
|
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")
|
|
|
|
|
|
|
|
|
2014-02-03 21:24:54 +00:00
|
|
|
setup(
|
2018-09-03 13:44:38 +00:00
|
|
|
name="trezor",
|
2018-07-03 13:53:16 +00:00
|
|
|
version=find_version(),
|
2019-06-17 18:27:55 +00:00
|
|
|
author="Trezor",
|
2018-09-03 13:44:38 +00:00
|
|
|
author_email="info@trezor.io",
|
|
|
|
license="LGPLv3",
|
2019-06-17 18:27:55 +00:00
|
|
|
description="Python library for communicating with Trezor Hardware Wallet",
|
2021-09-27 10:13:51 +00:00
|
|
|
long_description=read("README.md") + "\n\n" + read("CHANGELOG.md"),
|
2018-09-03 13:44:38 +00:00
|
|
|
long_description_content_type="text/markdown",
|
2020-03-04 12:40:10 +00:00
|
|
|
url="https://github.com/trezor/trezor-firmware/tree/master/python",
|
2019-08-06 14:26:23 +00:00
|
|
|
packages=find_packages("src"),
|
|
|
|
package_dir={"": "src"},
|
|
|
|
entry_points={"console_scripts": ["trezorctl=trezorlib.cli.trezorctl:cli"]},
|
2016-10-03 18:37:48 +00:00
|
|
|
install_requires=install_requires,
|
2020-09-01 09:04:20 +00:00
|
|
|
extras_require=extras_require,
|
2020-10-08 09:51:57 +00:00
|
|
|
python_requires=">=3.6",
|
2014-02-03 21:24:54 +00:00
|
|
|
include_package_data=True,
|
|
|
|
zip_safe=False,
|
|
|
|
classifiers=[
|
2018-09-03 13:44:38 +00:00
|
|
|
"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",
|
2014-02-03 21:24:54 +00:00
|
|
|
],
|
|
|
|
)
|