├── .gitignore ├── .travis.yml ├── LICENSE ├── README.rst ├── appveyor.yml ├── autowheel ├── __init__.py ├── autowheel.py ├── config.py └── numpy.py ├── setup.py └── tests └── autowheel.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrofrog/autowheel/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrofrog/autowheel/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrofrog/autowheel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrofrog/autowheel/HEAD/README.rst -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrofrog/autowheel/HEAD/appveyor.yml -------------------------------------------------------------------------------- /autowheel/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autowheel/autowheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrofrog/autowheel/HEAD/autowheel/autowheel.py -------------------------------------------------------------------------------- /autowheel/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrofrog/autowheel/HEAD/autowheel/config.py -------------------------------------------------------------------------------- /autowheel/numpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrofrog/autowheel/HEAD/autowheel/numpy.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrofrog/autowheel/HEAD/setup.py -------------------------------------------------------------------------------- /tests/autowheel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astrofrog/autowheel/HEAD/tests/autowheel.yml --------------------------------------------------------------------------------