mirror of
https://github.com/jongracecox/anybadge.git
synced 2025-07-20 20:01:04 +02:00
* Make `build_examples.py` callable from python * Allow tests to run from outside project directory * Add invoke tasks * Add server tests * Run travis tests against wheel package instead of local code * Update `badge.write_badge()` to support `pathlib.Path` * Update `CONTRIBUTING.md`
8 lines
137 B
Python
Executable File
8 lines
137 B
Python
Executable File
#!/usr/bin/env python
|
|
if __name__ == "__main__":
|
|
from anybadge.server.cli import main
|
|
import sys
|
|
|
|
print(sys.argv)
|
|
main()
|