added linux run script

This commit is contained in:
Kevin Froman 2018-01-15 02:03:13 -06:00
parent eee5ca9f74
commit 8b4b69e99c
No known key found for this signature in database
GPG Key ID: 0D414D0FE405B63B
11 changed files with 8 additions and 71 deletions

3
RUN-LINUX.sh Executable file
View File

@ -0,0 +1,3 @@
#!/bin/sh
cd onionr/
./onionr.py "$@"

View File

@ -1,11 +0,0 @@
Metadata-Version: 1.0
Name: onionr
Version: 0.0.0.dev0
Summary: Decentralized P2P platform
Home-page: https://github.com/beardog108/onionr
Author: Kevin Froman
Author-email: beardog@firemail.cc
License: GPL 3.0
Description-Content-Type: UNKNOWN
Description: UNKNOWN
Platform: UNKNOWN

View File

@ -1,18 +0,0 @@
setup.cfg
setup.py
onionr/__init__.py
onionr/api.py
onionr/colors.py
onionr/communicator.py
onionr/core.py
onionr/gui.py
onionr/onionr.py
onionr/onionrutils.py
onionr/tests.py
onionr/timedHmac.py
onionr.egg-info/PKG-INFO
onionr.egg-info/SOURCES.txt
onionr.egg-info/dependency_links.txt
onionr.egg-info/entry_points.txt
onionr.egg-info/top_level.txt
onionr.egg-info/zip-safe

View File

@ -1 +0,0 @@

View File

@ -1,3 +0,0 @@
# -*- Entry points: -*-

View File

@ -1 +0,0 @@
onionr

View File

@ -1 +0,0 @@

View File

@ -22,7 +22,7 @@ and code to operate as a daemon, getting commands from the command queue databas
import sqlite3, requests, hmac, hashlib, time, sys, os
import core
class OnionrCommunicate:
def __init__(self):
def __init__(self, debug, developmentMode):
''' OnionrCommunicate
This class handles communication with nodes in the Onionr network.
@ -57,4 +57,7 @@ try:
except IndexError:
pass
if shouldRun:
OnionrCommunicate(debug, developmentMode)
try:
OnionrCommunicate(debug, developmentMode)
except KeyboardInterrupt:
pass

View File

@ -1,3 +0,0 @@
[egg_info]
tag_build = dev
tag_svn_revision = true

View File

@ -1,31 +0,0 @@
from setuptools import setup, find_packages
import sys, os
version = '0.0.0'
setup(name='onionr',
version=version,
description="Decentralized P2P platform",
long_description="""\
""",
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='',
author='Kevin Froman',
author_email='beardog@firemail.cc',
url='https://github.com/beardog108/onionr',
license='GPL 3.0',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=True,
install_requires=[
'simple_crypt',
'requests',
'setuptools',
'Flask',
'pycrypto',
'gnupg'
],
entry_points="""
# -*- Entry points: -*-
""",
)