4 Commits

3 changed files with 10 additions and 19 deletions

2
.gitignore vendored
View File

@ -1,5 +1,7 @@
*.pyc *.pyc
__pycache__ __pycache__
dist
*.egg-info
migrations migrations
*.mo *.mo
.idea .idea

View File

@ -25,31 +25,16 @@ https://accounting.imacat.idv.tw/accounting .
## Installation ## Installation
### Requirements ### Install
`mia-accounting` requires Python 3.6 or above to work. `mia-accounting` requires Python 3.6 or above to work.
Install the required packages with `pip`. Install `mia-accounting` with `pip`.
``` ```
pip install django django-dirtyfields titlecase django-decorator-include pip install mia-accounting
``` ```
### Download
The Mia! Accounting project is hosted on GitHub.
https://github.com/imacat/mia-accounting
You can download or clone the project from from GitHub
```
git clone git@github.com:imacat/mia-accounting.git
```
Move the `accounting` and `mia_core` directories into your Django project root
directory.
### `settings.py` ### `settings.py`
Add these two applications in the `INSTALL_APPS` section of your `settings.py`. Add these two applications in the `INSTALL_APPS` section of your `settings.py`.
@ -201,6 +186,10 @@ REGULAR_ACCOUNTS = {
## Bugs and Supports ## Bugs and Supports
The `mia-accounting` project is hosted on GitHub.
https://github.com/imacat/mia-accounting
Address all bugs and support requests to imacat@mail.imacat.idv.tw. Address all bugs and support requests to imacat@mail.imacat.idv.tw.
## Copyright ## Copyright

View File

@ -21,7 +21,7 @@ with open("README.md", "r") as fh:
setuptools.setup( setuptools.setup(
name="mia-accounting", name="mia-accounting",
version="0.0.1", version="0.0.2",
author="imacat", author="imacat",
author_email="imacat@mail.imacat.idv.tw", author_email="imacat@mail.imacat.idv.tw",
description="A Django accounting application", description="A Django accounting application",