Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
15ad595ad1 | |||
47b41a86e3 | |||
943fd44c44 | |||
b6ac650bfd |
2
.gitignore
vendored
2
.gitignore
vendored
@ -1,5 +1,7 @@
|
|||||||
*.pyc
|
*.pyc
|
||||||
__pycache__
|
__pycache__
|
||||||
|
dist
|
||||||
|
*.egg-info
|
||||||
migrations
|
migrations
|
||||||
*.mo
|
*.mo
|
||||||
.idea
|
.idea
|
||||||
|
25
README.md
25
README.md
@ -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
|
||||||
|
2
setup.py
2
setup.py
@ -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",
|
||||||
|
Reference in New Issue
Block a user