forked from LBRYCommunity/lbry-sdk
88 lines
1.8 KiB
Python
88 lines
1.8 KiB
Python
#!/usr/bin/env python
|
|
|
|
import sys
|
|
import os
|
|
import site
|
|
from lbrynet import __version__
|
|
|
|
|
|
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"
|
|
|
|
|
|
# TODO: find a way to keep this in sync with requirements.txt
|
|
requires = [
|
|
'Twisted',
|
|
'appdirs',
|
|
'argparse',
|
|
'colorama',
|
|
'dnspython',
|
|
'ecdsa',
|
|
'envparse',
|
|
'gmpy',
|
|
'jsonrpc',
|
|
'jsonrpclib',
|
|
'jsonschema',
|
|
'lbryum',
|
|
'loggly-python-handler',
|
|
'miniupnpc',
|
|
'pbkdf2',
|
|
'protobuf',
|
|
'pycrypto',
|
|
'qrcode',
|
|
'requests',
|
|
'requests_futures',
|
|
'seccure',
|
|
'simplejson',
|
|
'six',
|
|
'slowaes',
|
|
'txJSON-RPC',
|
|
'wsgiref',
|
|
'zope.interface',
|
|
'base58',
|
|
'googlefinance',
|
|
'pyyaml',
|
|
'service_identity',
|
|
'ndg-httpsclient',
|
|
]
|
|
|
|
|
|
console_scripts = [
|
|
'lbrynet-daemon = lbrynet.lbrynet_daemon.DaemonControl:start',
|
|
'stop-lbrynet-daemon = lbrynet.lbrynet_daemon.DaemonControl:stop',
|
|
'lbrynet-cli = lbrynet.lbrynet_daemon.DaemonCLI:main'
|
|
]
|
|
|
|
|
|
def package_files(directory):
|
|
for path, _, filenames in os.walk(directory):
|
|
for filename in filenames:
|
|
yield os.path.join('..', path, filename)
|
|
|
|
|
|
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,
|
|
packages=find_packages(base_dir),
|
|
install_requires=requires,
|
|
entry_points={'console_scripts': console_scripts},
|
|
package_data={
|
|
package_name: list(package_files('lbrynet/resources/ui'))
|
|
},
|
|
zip_safe=False,
|
|
)
|