├── .gitignore ├── README.md ├── changeos └── __init__.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | # Created by .ignore support plugin (hsz.mobi) 2 | 3 | .idea 4 | dev 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Zheng/ChangeOS/HEAD/README.md -------------------------------------------------------------------------------- /changeos/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Zheng/ChangeOS/HEAD/changeos/__init__.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Zheng/ChangeOS/HEAD/setup.py --------------------------------------------------------------------------------