setup: fix indentation for lists
This commit is contained in:
@@ -9,7 +9,10 @@ setup(
|
|||||||
author_email='roman.zeyde@gmail.com',
|
author_email='roman.zeyde@gmail.com',
|
||||||
url='http://github.com/romanz/trezor-agent',
|
url='http://github.com/romanz/trezor-agent',
|
||||||
scripts=['keepkey_agent.py'],
|
scripts=['keepkey_agent.py'],
|
||||||
install_requires=['libagent>=0.9.0', 'keepkey>=0.7.3'],
|
install_requires=[
|
||||||
|
'libagent>=0.9.0',
|
||||||
|
'keepkey>=0.7.3'
|
||||||
|
],
|
||||||
platforms=['POSIX'],
|
platforms=['POSIX'],
|
||||||
classifiers=[
|
classifiers=[
|
||||||
'Environment :: Console',
|
'Environment :: Console',
|
||||||
|
|||||||
@@ -9,7 +9,10 @@ setup(
|
|||||||
author_email='roman.zeyde@gmail.com',
|
author_email='roman.zeyde@gmail.com',
|
||||||
url='http://github.com/romanz/trezor-agent',
|
url='http://github.com/romanz/trezor-agent',
|
||||||
scripts=['ledger_agent.py'],
|
scripts=['ledger_agent.py'],
|
||||||
install_requires=['libagent>=0.9.0', 'ledgerblue>=0.1.8'],
|
install_requires=[
|
||||||
|
'libagent>=0.9.0',
|
||||||
|
'ledgerblue>=0.1.8'
|
||||||
|
],
|
||||||
platforms=['POSIX'],
|
platforms=['POSIX'],
|
||||||
classifiers=[
|
classifiers=[
|
||||||
'Environment :: Console',
|
'Environment :: Console',
|
||||||
|
|||||||
@@ -9,7 +9,10 @@ setup(
|
|||||||
author_email='roman.zeyde@gmail.com',
|
author_email='roman.zeyde@gmail.com',
|
||||||
url='http://github.com/romanz/trezor-agent',
|
url='http://github.com/romanz/trezor-agent',
|
||||||
scripts=['trezor_agent.py'],
|
scripts=['trezor_agent.py'],
|
||||||
install_requires=['libagent>=0.9.0', 'trezor>=0.7.6'],
|
install_requires=[
|
||||||
|
'libagent>=0.9.0',
|
||||||
|
'trezor>=0.7.6'
|
||||||
|
],
|
||||||
platforms=['POSIX'],
|
platforms=['POSIX'],
|
||||||
classifiers=[
|
classifiers=[
|
||||||
'Environment :: Console',
|
'Environment :: Console',
|
||||||
|
|||||||
13
setup.py
13
setup.py
@@ -8,8 +8,17 @@ setup(
|
|||||||
author='Roman Zeyde',
|
author='Roman Zeyde',
|
||||||
author_email='roman.zeyde@gmail.com',
|
author_email='roman.zeyde@gmail.com',
|
||||||
url='http://github.com/romanz/trezor-agent',
|
url='http://github.com/romanz/trezor-agent',
|
||||||
packages=['libagent', 'libagent.device', 'libagent.gpg', 'libagent.ssh'],
|
packages=[
|
||||||
install_requires=['ecdsa>=0.13', 'ed25519>=1.4', 'semver>=2.2'],
|
'libagent',
|
||||||
|
'libagent.device',
|
||||||
|
'libagent.gpg',
|
||||||
|
'libagent.ssh'
|
||||||
|
],
|
||||||
|
install_requires=[
|
||||||
|
'ecdsa>=0.13',
|
||||||
|
'ed25519>=1.4',
|
||||||
|
'semver>=2.2'
|
||||||
|
],
|
||||||
platforms=['POSIX'],
|
platforms=['POSIX'],
|
||||||
classifiers=[
|
classifiers=[
|
||||||
'Environment :: Console',
|
'Environment :: Console',
|
||||||
|
|||||||
Reference in New Issue
Block a user