2016-03-14 12:30:22 -04:00
|
|
|
import os
|
2019-06-20 21:02:58 -04:00
|
|
|
from lbry 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.",
|
2019-06-04 10:23:04 -04:00
|
|
|
author_email="hello@lbry.com",
|
|
|
|
url="https://lbry.com",
|
2017-03-13 14:10:31 -04:00
|
|
|
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',
|
2019-05-22 09:23:31 -04:00
|
|
|
python_requires='>=3.7',
|
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={
|
2019-06-20 21:02:58 -04:00
|
|
|
'console_scripts': 'lbrynet=lbry.extras.cli:main'
|
2018-07-26 22:04:43 -04:00
|
|
|
},
|
|
|
|
install_requires=[
|
2019-06-20 15:26:54 -04:00
|
|
|
'torba',
|
2019-02-28 12:04:02 -05:00
|
|
|
'aiohttp==3.5.4',
|
2019-08-19 10:51:20 -04:00
|
|
|
'aioupnp==0.0.14',
|
2019-02-26 17:20:16 -05:00
|
|
|
'appdirs==1.4.3',
|
2019-02-28 12:40:11 -05:00
|
|
|
'certifi>=2018.11.29',
|
2019-02-26 17:20:16 -05:00
|
|
|
'colorama==0.3.7',
|
|
|
|
'distro==1.4.0',
|
2018-08-24 12:21:11 -04:00
|
|
|
'base58==1.0.0',
|
2019-02-26 17:20:16 -05:00
|
|
|
'cffi==1.12.1',
|
|
|
|
'cryptography==2.5',
|
2018-11-06 00:05:40 -05:00
|
|
|
'protobuf==3.6.1',
|
2019-02-26 17:20:16 -05:00
|
|
|
'msgpack==0.6.1',
|
|
|
|
'ecdsa==0.13',
|
2019-03-24 23:15:11 -04:00
|
|
|
'pyyaml==4.2b1',
|
2019-02-26 17:20:16 -05:00
|
|
|
'docopt==0.6.2',
|
2019-03-24 16:55:04 -04:00
|
|
|
'hachoir',
|
2018-07-26 22:04:43 -04:00
|
|
|
],
|
2017-01-31 11:52:43 -08:00
|
|
|
)
|