2022-03-08 17:01:19 +01:00
|
|
|
import os
|
2022-05-18 16:50:20 +02:00
|
|
|
from hub import __name__, __version__
|
2022-03-08 17:01:19 +01:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
|
|
BASE = os.path.dirname(__file__)
|
|
|
|
with open(os.path.join(BASE, 'README.md'), encoding='utf-8') as fh:
|
|
|
|
long_description = fh.read()
|
|
|
|
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name=__name__,
|
|
|
|
version=__version__,
|
|
|
|
author="LBRY Inc.",
|
|
|
|
author_email="hello@lbry.com",
|
|
|
|
url="https://lbry.com",
|
|
|
|
description="A decentralized media library and marketplace",
|
|
|
|
long_description=long_description,
|
|
|
|
long_description_content_type="text/markdown",
|
|
|
|
keywords="lbry protocol electrum spv",
|
|
|
|
license='MIT',
|
|
|
|
python_requires='>=3.7',
|
|
|
|
packages=find_packages(exclude=('tests',)),
|
|
|
|
zip_safe=False,
|
|
|
|
entry_points={
|
|
|
|
'console_scripts': [
|
2022-05-18 19:09:42 +02:00
|
|
|
'scribe=hub.scribe.__main__:main',
|
|
|
|
'herald=hub.herald.__main__:main',
|
|
|
|
'scribe-elastic-sync=hub.elastic_sync.__main__:main',
|
2022-03-08 17:01:19 +01:00
|
|
|
],
|
|
|
|
},
|
|
|
|
install_requires=[
|
2022-03-25 17:33:51 +01:00
|
|
|
'aiohttp==3.7.4',
|
2022-03-17 22:55:47 +01:00
|
|
|
'certifi>=2021.10.08',
|
2022-03-09 01:59:04 +01:00
|
|
|
'colorama==0.3.7',
|
2022-03-30 00:32:23 +02:00
|
|
|
'cffi==1.13.2',
|
2022-09-24 01:01:37 +02:00
|
|
|
'protobuf==3.18.3',
|
2022-03-08 17:01:19 +01:00
|
|
|
'msgpack==0.6.1',
|
|
|
|
'prometheus_client==0.7.1',
|
|
|
|
'coincurve==15.0.0',
|
|
|
|
'pbkdf2==1.3',
|
|
|
|
'attrs==18.2.0',
|
|
|
|
'elasticsearch==7.10.1',
|
2022-03-09 01:59:04 +01:00
|
|
|
'hachoir==3.1.2',
|
2022-03-08 19:08:48 +01:00
|
|
|
'filetype==1.0.9',
|
2022-03-08 20:19:38 +01:00
|
|
|
'grpcio==1.38.0',
|
2022-03-16 04:57:24 +01:00
|
|
|
'lbry-rocksdb==0.8.2',
|
2022-12-29 16:04:11 +01:00
|
|
|
'ujson==5.4.0',
|
|
|
|
'rehash==1.0.0'
|
2022-03-08 17:01:19 +01:00
|
|
|
],
|
|
|
|
extras_require={
|
|
|
|
'lint': ['pylint==2.10.0'],
|
|
|
|
'test': ['coverage'],
|
|
|
|
},
|
|
|
|
classifiers=[
|
|
|
|
'Framework :: AsyncIO',
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
'Intended Audience :: System Administrators',
|
|
|
|
'License :: OSI Approved :: MIT License',
|
|
|
|
'Programming Language :: Python :: 3',
|
|
|
|
'Operating System :: OS Independent',
|
|
|
|
'Topic :: Internet',
|
|
|
|
'Topic :: Software Development :: Testing',
|
|
|
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
|
|
|
'Topic :: System :: Distributed Computing',
|
|
|
|
'Topic :: Utilities',
|
|
|
|
],
|
|
|
|
)
|