├── .gitignore ├── Makefile ├── README.md ├── acgt ├── __init__.py ├── acgt.py ├── cmd.py ├── gen.py └── template │ ├── _api.js │ └── _app.py ├── api.json ├── example ├── api.js └── app.py ├── requirement.txt ├── scripts.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henryluki/acgt/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henryluki/acgt/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henryluki/acgt/HEAD/README.md -------------------------------------------------------------------------------- /acgt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acgt/acgt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henryluki/acgt/HEAD/acgt/acgt.py -------------------------------------------------------------------------------- /acgt/cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henryluki/acgt/HEAD/acgt/cmd.py -------------------------------------------------------------------------------- /acgt/gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henryluki/acgt/HEAD/acgt/gen.py -------------------------------------------------------------------------------- /acgt/template/_api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henryluki/acgt/HEAD/acgt/template/_api.js -------------------------------------------------------------------------------- /acgt/template/_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henryluki/acgt/HEAD/acgt/template/_app.py -------------------------------------------------------------------------------- /api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henryluki/acgt/HEAD/api.json -------------------------------------------------------------------------------- /example/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henryluki/acgt/HEAD/example/api.js -------------------------------------------------------------------------------- /example/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henryluki/acgt/HEAD/example/app.py -------------------------------------------------------------------------------- /requirement.txt: -------------------------------------------------------------------------------- 1 | bottle 2 | click -------------------------------------------------------------------------------- /scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henryluki/acgt/HEAD/scripts.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henryluki/acgt/HEAD/setup.py --------------------------------------------------------------------------------