├── .gitignore ├── AUTHORS.txt ├── CHANGES.txt ├── LICENSE.txt ├── Pipfile ├── Pipfile.lock ├── README.md ├── docs ├── Makefile ├── conf.py ├── index.rst └── make.bat ├── pyproject.toml ├── src └── pyperclip │ ├── __init__.py │ └── __main__.py ├── tests └── test_pyperclip.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/pyperclip/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/pyperclip/HEAD/AUTHORS.txt -------------------------------------------------------------------------------- /CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/pyperclip/HEAD/CHANGES.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/pyperclip/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/pyperclip/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/pyperclip/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/pyperclip/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/pyperclip/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/pyperclip/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/pyperclip/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/pyperclip/HEAD/docs/make.bat -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/pyperclip/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/pyperclip/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/pyperclip/HEAD/src/pyperclip/__init__.py -------------------------------------------------------------------------------- /src/pyperclip/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/pyperclip/HEAD/src/pyperclip/__main__.py -------------------------------------------------------------------------------- /tests/test_pyperclip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/pyperclip/HEAD/tests/test_pyperclip.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/pyperclip/HEAD/tox.ini --------------------------------------------------------------------------------