improved project structuring
This commit is contained in:
parent
a89435cfd3
commit
813e98a801
8
.gitignore
vendored
8
.gitignore
vendored
@ -1,5 +1,5 @@
|
||||
__pycache__/
|
||||
data/config.ini
|
||||
data/*.db
|
||||
data-old/*
|
||||
dev-enabled
|
||||
onionr/data/config.ini
|
||||
onionr/data/*.db
|
||||
onionr/data-old/*
|
||||
onionr/dev-enabled
|
||||
|
11
onionr.egg-info/PKG-INFO
Normal file
11
onionr.egg-info/PKG-INFO
Normal file
@ -0,0 +1,11 @@
|
||||
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
|
9
onionr.egg-info/SOURCES.txt
Normal file
9
onionr.egg-info/SOURCES.txt
Normal file
@ -0,0 +1,9 @@
|
||||
setup.cfg
|
||||
setup.py
|
||||
onionr/__init__.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
onionr.egg-info/dependency_links.txt
Normal file
1
onionr.egg-info/dependency_links.txt
Normal file
@ -0,0 +1 @@
|
||||
|
3
onionr.egg-info/entry_points.txt
Normal file
3
onionr.egg-info/entry_points.txt
Normal file
@ -0,0 +1,3 @@
|
||||
|
||||
# -*- Entry points: -*-
|
||||
|
1
onionr.egg-info/top_level.txt
Normal file
1
onionr.egg-info/top_level.txt
Normal file
@ -0,0 +1 @@
|
||||
onionr
|
1
onionr.egg-info/zip-safe
Normal file
1
onionr.egg-info/zip-safe
Normal file
@ -0,0 +1 @@
|
||||
|
1
onionr/__init__.py
Normal file
1
onionr/__init__.py
Normal file
@ -0,0 +1 @@
|
||||
#
|
6
requirements.txt
Normal file
6
requirements.txt
Normal file
@ -0,0 +1,6 @@
|
||||
simple_crypt==4.1.7
|
||||
requests==2.18.4
|
||||
setuptools==38.2.4
|
||||
Flask==0.12.2
|
||||
pycrypto==2.6.1
|
||||
gnupg==2.3.1
|
34
setup.py
34
setup.py
@ -1,12 +1,26 @@
|
||||
#!/usr/bin/env python3
|
||||
from setuptools import setup, find_packages
|
||||
import sys, os
|
||||
|
||||
from distutils.core import setup
|
||||
version = '0.0.0'
|
||||
|
||||
setup(name='Onionr',
|
||||
version='0.0.0',
|
||||
description='P2P Microblogging Platform & Social network.',
|
||||
author='Kevin Froman',
|
||||
author_email='beardog@firemail.cc',
|
||||
url='https://github.com/beardog108/onionr',
|
||||
packages=['requests'],
|
||||
)
|
||||
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=[
|
||||
# -*- Extra requirements: -*-
|
||||
],
|
||||
entry_points="""
|
||||
# -*- Entry points: -*-
|
||||
""",
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user