2018-02-02 15:36:29 +00:00
|
|
|
#!/usr/bin/env python3
|
2021-11-26 14:50:43 +00:00
|
|
|
|
|
|
|
# This file is part of the Trezor project.
|
|
|
|
#
|
|
|
|
# Copyright (C) 2012-2022 SatoshiLabs and contributors
|
|
|
|
#
|
|
|
|
# This library is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
# as published by the Free Software Foundation.
|
|
|
|
#
|
|
|
|
# This library is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU Lesser General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the License along with this library.
|
|
|
|
# If not, see <https://www.gnu.org/licenses/lgpl-3.0.html>.
|
|
|
|
|
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",
|
2021-11-15 12:09:45 +00:00
|
|
|
"mnemonic>=0.20",
|
2018-09-03 13:44:38 +00:00
|
|
|
"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",
|
2021-12-09 12:30:48 +00:00
|
|
|
"typing_extensions>=3.10",
|
2021-11-22 10:51:08 +00:00
|
|
|
"dataclasses ; python_version<'3.7'",
|
2022-02-14 09:42:06 +00:00
|
|
|
"simple-rlp>=0.1.2 ; python_version>='3.7'",
|
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"],
|
2022-02-14 09:42:06 +00:00
|
|
|
"ethereum": ["rlp>=1.1.0 ; python_version<'3.7'", "web3>=4.8"],
|
2020-09-01 09:04:20 +00:00
|
|
|
"qt-widgets": ["PyQt5"],
|
|
|
|
"extra": ["Pillow"],
|
2021-10-08 00:39:00 +00:00
|
|
|
"stellar": ["stellar-sdk>=4.0.0,<6.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
|
|
|
],
|
|
|
|
)
|