Metadata-Version: 2.4
Name: authbox-learn
Version: 1.0.0
Summary: For learn how to create library
Home-page: https://github.com/PROJECT-OUTBOX/authbox_learn.git
Author-email: suratiwan03@gmail.com
Keywords: learn,library,django
Classifier: License :: OSI Approved :: BSD License
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3 :: Only
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: incremental
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: license-file
Dynamic: requires-dist
Dynamic: summary

# Learn Library

Use for learn how to create library in python, that can be use in linx after install it.

## Content of library folder
1. manage.py            # when you create django project this file auto create
2. MANIFEST.in          # when your library need to include additional file
3. LICENSE              # Always include this file
4. requirements.txt     # if library need other library to run
5. setup.py             # need by pypi.org to name the library and create release version


### How to use
    > mkvirtualenv env_test     # named your environment
    > workon env_test           # activate yout environment
    > mylearn                   # your library is ready to use

