lbry-sdk/setup.py

79 lines
2.1 KiB
Python
Raw Normal View History

2015-08-20 17:27:15 +02:00
#!/usr/bin/env python
import os
from lbrynet import __version__
2017-03-13 19:10:31 +01:00
from setuptools import setup, find_packages
2016-12-16 18:04:47 +01:00
# TODO: find a way to keep this in sync with requirements.txt
#
# Note though that this list is intentionally less restrictive than
# requirements.txt. This is only the libraries that are direct
# dependencies of the lbrynet library. requirements.txt includes
# dependencies of dependencies and specific versions that we know
# all work together.
2017-04-10 21:10:52 +02:00
#
# See https://packaging.python.org/requirements/ and
# https://caremad.io/posts/2013/07/setup-vs-requirement/ for more details.
requires = [
'twisted[tls]',
2017-01-31 20:52:43 +01:00
'appdirs',
'distro',
'base58',
2017-01-31 20:52:43 +01:00
'envparse',
'jsonrpc',
2018-07-07 00:31:35 +02:00
'cryptography==2.2.2',
'lbryschema==0.0.16',
2018-07-07 00:31:35 +02:00
'torba',
2017-01-31 20:52:43 +01:00
'miniupnpc',
'txupnp==0.0.1a11',
'pyyaml',
2017-01-31 20:52:43 +01:00
'requests',
'txJSON-RPC',
'zope.interface',
2018-05-06 01:51:49 +02:00
'treq',
2018-06-09 23:39:36 +02:00
'docopt',
2018-07-07 00:31:35 +02:00
'colorama==0.3.7',
2018-07-30 23:58:17 +02:00
'six',
]
2016-02-27 23:49:49 +01:00
console_scripts = [
'lbrynet-daemon = lbrynet.daemon.DaemonControl:start',
2017-12-05 17:38:50 +01:00
'lbrynet-cli = lbrynet.daemon.DaemonCLI:main',
'lbrynet-console = lbrynet.daemon.DaemonConsole:main'
]
2016-02-27 23:49:49 +01:00
def package_files(directory):
for path, _, filenames in os.walk(directory):
for filename in filenames:
yield os.path.join('..', path, filename)
2017-03-13 19:10:31 +01:00
base_dir = os.path.abspath(os.path.dirname(__file__))
# Get the long description from the README file
2017-08-28 20:32:55 +02:00
with open(os.path.join(base_dir, 'README.md'), 'rb') as f:
2017-03-13 21:05:54 +01:00
long_description = f.read().decode('utf-8')
2017-01-31 20:52:43 +01:00
2017-03-13 19:10:31 +01:00
setup(
2018-07-21 22:24:37 +02:00
name="lbry",
2017-03-13 19:10:31 +01:00
version=__version__,
author="LBRY Inc.",
author_email="hello@lbry.io",
url="https://lbry.io",
description="A decentralized media library and marketplace",
long_description=long_description,
keywords="lbry protocol media",
license='MIT',
2018-07-21 22:24:37 +02:00
python_requires='>=3.7',
packages=find_packages(exclude=('tests',)),
2017-03-13 19:10:31 +01:00
install_requires=requires,
entry_points={'console_scripts': console_scripts},
zip_safe=False,
2018-07-07 00:31:35 +02:00
extras_require={
'test': (
'mock>=2.0,<3.0',
'faker>=0.8,<1.0'
)
}
2017-01-31 20:52:43 +01:00
)