├── .circleci └── config.yml ├── .codecov.yml ├── .flake8 ├── .github ├── renovate.json └── workflows │ └── tests.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── justfile ├── pyproject.toml ├── src └── pyfoobar │ ├── __about__.py │ ├── __init__.py │ ├── cli.py │ └── main.py ├── tests ├── test_cli.py └── test_solve.py └── tox.ini /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/pyfoobar/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.codecov.yml: -------------------------------------------------------------------------------- 1 | comment: no 2 | -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/pyfoobar/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["config:base"] 3 | } 4 | -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/pyfoobar/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/pyfoobar/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/pyfoobar/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/pyfoobar/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/pyfoobar/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/pyfoobar/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/pyfoobar/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/pyfoobar/HEAD/README.md -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/pyfoobar/HEAD/justfile -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/pyfoobar/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/pyfoobar/__about__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.0.7" 2 | -------------------------------------------------------------------------------- /src/pyfoobar/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/pyfoobar/HEAD/src/pyfoobar/__init__.py -------------------------------------------------------------------------------- /src/pyfoobar/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/pyfoobar/HEAD/src/pyfoobar/cli.py -------------------------------------------------------------------------------- /src/pyfoobar/main.py: -------------------------------------------------------------------------------- 1 | def solve(): 2 | return 42 3 | -------------------------------------------------------------------------------- /tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/pyfoobar/HEAD/tests/test_cli.py -------------------------------------------------------------------------------- /tests/test_solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/pyfoobar/HEAD/tests/test_solve.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/pyfoobar/HEAD/tox.ini --------------------------------------------------------------------------------