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-07-03 13:53:16 +00:00
|
|
|
import re
|
2022-06-21 10:01:41 +00:00
|
|
|
from pathlib import Path
|
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
|
|
|
|
2022-06-21 10:01:41 +00:00
|
|
|
CWD = Path(__file__).resolve().parent
|
|
|
|
|
|
|
|
install_requires = (CWD / "requirements.txt").read_text().splitlines()
|
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-06-19 14:54:54 +00:00
|
|
|
|
2018-07-03 13:53:16 +00:00
|
|
|
def find_version():
|
2022-06-21 10:01:41 +00:00
|
|
|
version_file = (CWD / "src" / "trezorlib" / "__init__.py").read_text()
|
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",
|
2022-06-21 10:01:41 +00:00
|
|
|
long_description=(CWD / "README.md").read_text()
|
|
|
|
+ "\n\n"
|
|
|
|
+ (CWD / "CHANGELOG.md").read_text(),
|
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",
|
2022-10-06 14:12:05 +00:00
|
|
|
package_data={"trezorlib": ["py.typed"]},
|
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
|
|
|
],
|
|
|
|
)
|