added linux run script
This commit is contained in:
parent
eee5ca9f74
commit
8b4b69e99c
3
RUN-LINUX.sh
Executable file
3
RUN-LINUX.sh
Executable file
@ -0,0 +1,3 @@
|
||||
#!/bin/sh
|
||||
cd onionr/
|
||||
./onionr.py "$@"
|
@ -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
|
@ -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
|
@ -1 +0,0 @@
|
||||
|
@ -1,3 +0,0 @@
|
||||
|
||||
# -*- Entry points: -*-
|
||||
|
@ -1 +0,0 @@
|
||||
onionr
|
@ -1 +0,0 @@
|
||||
|
@ -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
|
31
setup.py
31
setup.py
@ -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: -*-
|
||||
""",
|
||||
)
|
Loading…
Reference in New Issue
Block a user