-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
32 lines (29 loc) · 823 Bytes
/
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
from setuptools import setup
url = 'https://gitlab.com/rendaw/trezor-gpg-pinentry-tk'
GEN_version = '0.0.10'
try:
with open('readme.md', 'r') as readme_source:
readme = readme_source.read()
except FileNotFoundError:
readme = ''
setup(
name='trezor-gpg-pinentry-tk',
version=GEN_version,
author='rendaw',
author_email='spoo@zarbosoft.com',
url=url,
download_url=url + '/tarball/v{}'.format(GEN_version),
license='BSD',
description='A pinentry for GPG with Trezor',
long_description=readme,
classifiers=[
'License :: OSI Approved :: BSD License',
],
install_requires=[],
py_modules=['trezor_gpg_pinentry_tk'],
entry_points={
'console_scripts': [
'trezor-gpg-pinentry-tk = trezor_gpg_pinentry_tk:main',
],
},
)