2016-03-14 12:30:22 -04:00
|
|
|
import os
|
2018-10-05 10:20:32 -04:00
|
|
|
from lbrynet import __name__, __version__
|
2017-03-13 14:10:31 -04:00
|
|
|
from setuptools import setup, find_packages
|
2016-12-16 11:04:47 -06:00
|
|
|
|
2018-07-26 22:04:43 -04:00
|
|
|
BASE = os.path.dirname(__file__)
|
|
|
|
README_PATH = os.path.join(BASE, 'README.md')
|
2017-01-31 11:52:43 -08:00
|
|
|
|
2017-03-13 14:10:31 -04:00
|
|
|
setup(
|
2018-10-05 10:20:32 -04:00
|
|
|
name=__name__,
|
2017-03-13 14:10:31 -04:00
|
|
|
version=__version__,
|
|
|
|
author="LBRY Inc.",
|
|
|
|
author_email="hello@lbry.io",
|
|
|
|
url="https://lbry.io",
|
|
|
|
description="A decentralized media library and marketplace",
|
2018-10-20 15:19:06 +03:00
|
|
|
long_description=open(README_PATH, encoding='utf-8').read(),
|
|
|
|
long_description_content_type="text/markdown",
|
2017-03-13 14:10:31 -04:00
|
|
|
keywords="lbry protocol media",
|
|
|
|
license='MIT',
|
2018-07-24 03:06:53 -04:00
|
|
|
python_requires='>=3.6',
|
2018-07-16 23:32:37 -04:00
|
|
|
packages=find_packages(exclude=('tests',)),
|
2017-03-13 14:10:31 -04:00
|
|
|
zip_safe=False,
|
2018-07-26 22:04:43 -04:00
|
|
|
entry_points={
|
2018-11-06 13:55:22 -05:00
|
|
|
'console_scripts': 'lbrynet=lbrynet.extras.cli:main'
|
2018-07-26 22:04:43 -04:00
|
|
|
},
|
|
|
|
install_requires=[
|
|
|
|
'aiohttp',
|
2018-10-17 10:57:10 -04:00
|
|
|
'aioupnp',
|
2018-07-26 22:04:43 -04:00
|
|
|
'appdirs',
|
|
|
|
'distro',
|
2018-08-24 12:21:11 -04:00
|
|
|
'base58==1.0.0',
|
2018-07-26 22:04:43 -04:00
|
|
|
'jsonrpc',
|
|
|
|
'cryptography',
|
2018-11-06 00:05:40 -05:00
|
|
|
'protobuf==3.6.1',
|
2018-11-20 18:21:53 -05:00
|
|
|
'msgpack',
|
2018-09-20 20:03:07 -04:00
|
|
|
'jsonschema',
|
|
|
|
'ecdsa',
|
2018-07-26 22:04:43 -04:00
|
|
|
'torba',
|
|
|
|
'pyyaml',
|
|
|
|
'docopt',
|
|
|
|
'colorama==0.3.7',
|
|
|
|
],
|
2017-01-31 11:52:43 -08:00
|
|
|
)
|