improved project structuring

This commit is contained in:
Kevin Froman 2018-01-14 22:57:23 -06:00
parent a89435cfd3
commit 813e98a801
No known key found for this signature in database
GPG Key ID: 0D414D0FE405B63B
20 changed files with 64 additions and 14 deletions

8
.gitignore vendored
View File

@ -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
View 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

View 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

View File

@ -0,0 +1 @@

View File

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

View File

@ -0,0 +1 @@
onionr

1
onionr.egg-info/zip-safe Normal file
View File

@ -0,0 +1 @@

1
onionr/__init__.py Normal file
View File

@ -0,0 +1 @@
#

6
requirements.txt Normal file
View 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

3
setup.cfg Normal file
View File

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

View File

@ -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: -*-
""",
)