lbry-sdk/setup.py

73 lines
1.9 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 = [
2017-01-31 20:52:43 +01:00
'Twisted',
'appdirs',
'base58',
2017-01-31 20:52:43 +01:00
'envparse',
'jsonrpc',
'jsonschema',
2017-04-19 19:48:53 +02:00
'lbryum==2.7.20',
2017-04-19 18:48:38 +02:00
'lbryschema==0.0.3',
2017-01-31 20:52:43 +01:00
'miniupnpc',
'pycrypto',
'pyyaml',
2017-01-31 20:52:43 +01:00
'requests',
'txrequests',
2017-01-31 20:52:43 +01:00
'seccure',
'txJSON-RPC',
'zope.interface',
]
2016-02-27 23:49:49 +01:00
console_scripts = [
2016-09-26 03:32:56 +02:00
'lbrynet-daemon = lbrynet.lbrynet_daemon.DaemonControl:start',
'lbrynet-cli = lbrynet.lbrynet_daemon.DaemonCLI: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
package_name = "lbrynet"
base_dir = os.path.abspath(os.path.dirname(__file__))
# Get the long description from the README file
2017-03-13 21:05:54 +01:00
with open(os.path.join(base_dir, 'README.md')) as f:
long_description = f.read().decode('utf-8')
2017-01-31 20:52:43 +01:00
2017-03-13 19:10:31 +01:00
setup(
name=package_name,
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',
2017-01-31 20:52:43 +01:00
2017-03-13 19:10:31 +01:00
packages=find_packages(base_dir, exclude=['tests']),
install_requires=requires,
entry_points={'console_scripts': console_scripts},
package_data={
package_name: list(package_files('lbrynet/resources/ui'))
},
zip_safe=False,
2017-01-31 20:52:43 +01:00
)