forked from LBRYCommunity/lbry-sdk
setup.py fixes
This commit is contained in:
parent
37468cad59
commit
c497385bc7
2 changed files with 5 additions and 5 deletions
8
setup.py
8
setup.py
|
@ -18,7 +18,7 @@ setup(
|
|||
long_description=long_description,
|
||||
long_description_content_type="text/markdown",
|
||||
keywords='wallet,crypto,currency,money,bitcoin,electrum,electrumx',
|
||||
classifiers=(
|
||||
classifiers=[
|
||||
'Framework :: AsyncIO',
|
||||
'Intended Audience :: Developers',
|
||||
'Intended Audience :: System Administrators',
|
||||
|
@ -31,7 +31,7 @@ setup(
|
|||
'Topic :: System :: Benchmark',
|
||||
'Topic :: System :: Distributed Computing',
|
||||
'Topic :: Utilities',
|
||||
),
|
||||
],
|
||||
packages=find_packages(exclude=('tests',)),
|
||||
python_requires='>=3.6',
|
||||
install_requires=(
|
||||
|
@ -62,8 +62,8 @@ setup(
|
|||
'orchstr8=torba.orchstr8.cli:main [server]',
|
||||
],
|
||||
'gui_scripts': [
|
||||
'torba=torba.ui:main [ui]'
|
||||
'torba-workbench=torba.workbench:main [ui]'
|
||||
'torba=torba.ui:main [ui]',
|
||||
'torba-workbench=torba.workbench:main [ui]',
|
||||
]
|
||||
}
|
||||
)
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
__path__: str = __import__('pkgutil').extend_path(__path__, __name__)
|
||||
__version__ = '0.1.6'
|
||||
__version__ = '0.2.0'
|
||||
|
|
Loading…
Reference in a new issue