Skip to content

Commit

Permalink
Updated README and files for PyPi installment as well
Browse files Browse the repository at this point in the history
  • Loading branch information
robml committed Mar 9, 2020
1 parent bbb2639 commit 497b022
Show file tree
Hide file tree
Showing 48 changed files with 21 additions and 9 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
# django_dbaccounting
A Python based accounting core built with Django

====
DB Accounting
====
==============

DB Accounting is a Django app that provides a core for accounting and account management.
Although developed primarily for accounting purposes, the flexible nature of DB Accounting,
Expand All @@ -15,9 +14,9 @@ Quick start
-----------

If you are only looking to install the python package, use:
- pip install db-accounting (under maintenance, resolving with Python Packaging Authority)
- pip install db-accounting
- download the .tar file from Github
- install it from DjangoPackages.org (pending PyPi issue mentioned above)
- install it from DjangoPackages.org

To configure:

Expand Down Expand Up @@ -58,3 +57,5 @@ Best,
Robert M.

Reach me on instagram: @officialrobmel or @quantrobbie

See my Github: @robml
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
====

DB Accounting
====
==============

DB Accounting is a Django app that provides a core for accounting and account management.
Although developed primarily for accounting purposes, the flexible nature of DB Accounting,
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
5 changes: 3 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
[metadata]
name = django-dbaccounting
version = 0.1
version = 0.3
description = A Django app core to perform accounting and transactions.
long_description = file: README.rst
long_description = file: README.md
long_description_content_type = text/markdown
url = https://www.robmel.com/
author = Robert Melikyan
author_email = [email protected]
Expand Down
12 changes: 11 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
from setuptools import setup

setup()
# read the contents of the README file
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()

setup(
name='django_dbaccounting',
long_description=long_description,
long_description_content_type='text/markdown'
)

0 comments on commit 497b022

Please sign in to comment.