renamed build binary to lbrynet and other cleanup

This commit is contained in:
Lex Berezhny 2018-07-26 22:04:43 -04:00 committed by Jack Robison
parent d54d989c40
commit 4da40e8d52
No known key found for this signature in database
GPG key ID: DF25C68FE0239BB2
5 changed files with 45 additions and 91 deletions

31
.gitignore vendored
View file

@ -1,26 +1,9 @@
*.pyc /build
*.egg /dist
*.so /.tox
*.xml /.idea
*.iml /.coverage
*.log
*.pem
*.decTest
*.prof
.#*
/build/build lbrynet.egg-info
/build/dist __pycache__
/bulid/requirements_base.txt
/lbrynet.egg-info
/docs_build
/lbry-venv
.tox/
.idea/
.coverage
.DS_Store
# temporary files from the twisted.trial test runner
_trial_temp/ _trial_temp/

View file

@ -53,7 +53,7 @@ jobs:
artifacts: artifacts:
working_dir: dist working_dir: dist
paths: paths:
- lbry.exe - lbrynet.exe
target_paths: target_paths:
- /daemon/build-${TRAVIS_BUILD_NUMBER}_commit-${TRAVIS_COMMIT:0:7}_branch-${TRAVIS_BRANCH}$([ ! -z ${TRAVIS_TAG} ] && echo _tag-${TRAVIS_TAG})/win - /daemon/build-${TRAVIS_BUILD_NUMBER}_commit-${TRAVIS_COMMIT:0:7}_branch-${TRAVIS_BRANCH}$([ ! -z ${TRAVIS_TAG} ] && echo _tag-${TRAVIS_TAG})/win
@ -64,13 +64,13 @@ jobs:
- pip install git+https://github.com/lbryio/lbryschema.git - pip install git+https://github.com/lbryio/lbryschema.git
- pip install -e . - pip install -e .
script: script:
- pyinstaller -F -n lbry lbrynet/cli.py - pyinstaller -F -n lbrynet lbrynet/cli.py
- ./dist/lbry --version - ./dist/lbrynet --version
addons: addons:
artifacts: artifacts:
working_dir: dist working_dir: dist
paths: paths:
- lbry - lbrynet
target_paths: target_paths:
- /daemon/build-${TRAVIS_BUILD_NUMBER}_commit-${TRAVIS_COMMIT:0:7}_branch-${TRAVIS_BRANCH}$([ ! -z ${TRAVIS_TAG} ] && echo _tag-${TRAVIS_TAG})/linux - /daemon/build-${TRAVIS_BUILD_NUMBER}_commit-${TRAVIS_COMMIT:0:7}_branch-${TRAVIS_BRANCH}$([ ! -z ${TRAVIS_TAG} ] && echo _tag-${TRAVIS_TAG})/linux
@ -84,13 +84,13 @@ jobs:
- pip3 install git+https://github.com/lbryio/lbryschema.git - pip3 install git+https://github.com/lbryio/lbryschema.git
- pip3 install -e . - pip3 install -e .
script: script:
- pyinstaller -F -n lbry lbrynet/cli.py - pyinstaller -F -n lbrynet lbrynet/cli.py
- ./dist/lbry --version - ./dist/lbrynet --version
addons: addons:
artifacts: artifacts:
working_dir: dist working_dir: dist
paths: paths:
- lbry - lbrynet
target_paths: target_paths:
- /daemon/build-${TRAVIS_BUILD_NUMBER}_commit-${TRAVIS_COMMIT:0:7}_branch-${TRAVIS_BRANCH}$([ ! -z ${TRAVIS_TAG} ] && echo _tag-${TRAVIS_TAG})/mac - /daemon/build-${TRAVIS_BUILD_NUMBER}_commit-${TRAVIS_COMMIT:0:7}_branch-${TRAVIS_BRANCH}$([ ! -z ${TRAVIS_TAG} ] && echo _tag-${TRAVIS_TAG})/mac

View file

@ -1074,7 +1074,7 @@ class Daemon(AuthJSONRPCServer):
Stop lbrynet-daemon Stop lbrynet-daemon
Usage: Usage:
daemon_stop stop
Options: Options:
None None

View file

@ -17,5 +17,5 @@ cd torba && pip install -e . && cd ..
cd lbry cd lbry
pip install -e . pip install -e .
pyinstaller -F -n lbry lbrynet/cli.py pyinstaller -F -n lbrynet lbrynet/cli.py
wine dist/lbry.exe --version wine dist/lbrynet.exe --version

View file

@ -1,20 +1,27 @@
#!/usr/bin/env python
import os import os
from lbrynet import __version__ from lbrynet import __version__
from setuptools import setup, find_packages from setuptools import setup, find_packages
# TODO: find a way to keep this in sync with requirements.txt BASE = os.path.dirname(__file__)
# README_PATH = os.path.join(BASE, 'README.md')
# Note though that this list is intentionally less restrictive than
# requirements.txt. This is only the libraries that are direct setup(
# dependencies of the lbrynet library. requirements.txt includes name="lbrynet",
# dependencies of dependencies and specific versions that we know version=__version__,
# all work together. author="LBRY Inc.",
# author_email="hello@lbry.io",
# See https://packaging.python.org/requirements/ and url="https://lbry.io",
# https://caremad.io/posts/2013/07/setup-vs-requirement/ for more details. description="A decentralized media library and marketplace",
requires = [ long_description=open(README_PATH).read(),
keywords="lbry protocol media",
license='MIT',
python_requires='>=3.6',
packages=find_packages(exclude=('tests',)),
zip_safe=False,
entry_points={
'console_scripts': 'lbrynet=lbrynet.cli:main'
},
install_requires=[
'aiohttp', 'aiohttp',
'twisted[tls]', 'twisted[tls]',
'appdirs', 'appdirs',
@ -25,55 +32,19 @@ requires = [
'cryptography', 'cryptography',
'lbryschema', 'lbryschema',
'torba', 'torba',
'miniupnpc', 'upnpclient',
'txupnp==0.0.1a11',
'pyyaml', 'pyyaml',
'requests', 'requests',
'txJSON-RPC', 'txJSON-RPC',
'zope.interface',
'treq', 'treq',
'docopt', 'docopt',
'colorama==0.3.7', 'colorama==0.3.7',
'six', 'six'
] ],
console_scripts = [
'lbrynet-daemon = lbrynet.daemon.DaemonControl:start',
'lbrynet-cli = lbrynet.daemon.DaemonCLI:main',
'lbrynet-console = lbrynet.daemon.DaemonConsole:main'
]
def package_files(directory):
for path, _, filenames in os.walk(directory):
for filename in filenames:
yield os.path.join('..', path, filename)
base_dir = os.path.abspath(os.path.dirname(__file__))
# Get the long description from the README file
with open(os.path.join(base_dir, 'README.md'), 'rb') as f:
long_description = f.read().decode('utf-8')
setup(
name="lbry",
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',
python_requires='>=3.6',
packages=find_packages(exclude=('tests',)),
install_requires=requires,
entry_points={'console_scripts': console_scripts},
zip_safe=False,
extras_require={ extras_require={
'test': ( 'test': (
'mock>=2.0,<3.0', 'mock>=2.0,<3.0',
'faker>=0.8,<1.0' 'faker==0.8'
) )
} }
) )