├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── agent.py ├── setup.cfg ├── setup.py └── tests └── test_agent.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisseto/Agent/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisseto/Agent/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include LICENSE README.md 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisseto/Agent/HEAD/README.md -------------------------------------------------------------------------------- /agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisseto/Agent/HEAD/agent.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisseto/Agent/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisseto/Agent/HEAD/tests/test_agent.py --------------------------------------------------------------------------------