├── .gitignore ├── Makefile ├── debian ├── changelog ├── compat ├── control ├── copyright ├── files └── rules ├── pxpy.pyx ├── setup.py └── test.py /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | pxpy.c 3 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleber/python-pxlib/HEAD/Makefile -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleber/python-pxlib/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleber/python-pxlib/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleber/python-pxlib/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleber/python-pxlib/HEAD/debian/files -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleber/python-pxlib/HEAD/debian/rules -------------------------------------------------------------------------------- /pxpy.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleber/python-pxlib/HEAD/pxpy.pyx -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleber/python-pxlib/HEAD/setup.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleber/python-pxlib/HEAD/test.py --------------------------------------------------------------------------------