lbry-sdk/setup.py

80 lines
1.9 KiB
Python
Raw Normal View History

2015-08-20 17:27:15 +02:00
#!/usr/bin/env python
2016-02-27 23:49:49 +01:00
import sys
import os
2016-10-16 08:49:19 +02:00
import site
from lbrynet import __version__
2016-03-22 02:33:55 +01:00
base_dir = os.path.abspath(os.path.dirname(__file__))
package_name = "lbrynet"
dist_name = "LBRY"
description = "A decentralized media library and marketplace"
author = "LBRY, Inc"
url = "lbry.io"
maintainer = "Jack Robison"
maintainer_email = "jack@lbry.io"
keywords = "LBRY"
2016-03-22 02:33:55 +01:00
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.
# See https://packaging.python.org/requirements/ 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',
'lbryum>=2.7.6',
2017-01-31 20:52:43 +01:00
'miniupnpc',
'pycrypto',
'pyyaml',
2017-01-31 20:52:43 +01:00
'requests',
'requests_futures',
'seccure',
'simplejson',
'txJSON-RPC',
'zope.interface',
]
2016-02-27 23:49:49 +01:00
2016-12-16 18:04:47 +01:00
console_scripts = [
2016-09-26 03:32:56 +02:00
'lbrynet-daemon = lbrynet.lbrynet_daemon.DaemonControl:start',
'stop-lbrynet-daemon = lbrynet.lbrynet_daemon.DaemonControl:stop',
'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-01-31 20:52:43 +01:00
from setuptools import setup, find_packages
setup(name=package_name,
description=description,
version=__version__,
maintainer=maintainer,
maintainer_email=maintainer_email,
url=url,
author=author,
keywords=keywords,
2017-02-28 21:03:00 +01:00
packages=find_packages(base_dir, exclude=['tests']),
2017-01-31 20:52:43 +01:00
install_requires=requires,
entry_points={'console_scripts': console_scripts},
package_data={
package_name: list(package_files('lbrynet/resources/ui'))
},
zip_safe=False,
)