-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (33 loc) · 1.24 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
from setuptools import setup, find_packages
import pathlib
here = pathlib.Path(__file__).parent.resolve()
# Get the long description from the README file
long_description = (here / "README.md").read_text(encoding="utf-8")
setup(
name="trezor-pass",
version="1.5.1",
description="Trezor Password Manager Command-Line interface",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/pilartomas/trezor-password-manager-cli",
author="Tomas Pilar",
author_email="thomas7pilar@gmail.com",
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)"
],
keywords="trezor, password",
package_dir={"": "src"},
packages=find_packages(where="src"),
python_requires=">=3.10, <4",
install_requires=["trezor", "cryptography", "inquirerpy", "dropbox", "appdirs", "pyperclip", "prompt-toolkit"],
entry_points={
"console_scripts": [
"trezor-pass=trezorpass.cli:run",
],
},
project_urls={
"Bug Reports": "https://github.com/pilartomas/trezor-password-manager-cli/issues",
},
)