├── .gitignore ├── .hgignore ├── .travis.yml ├── CHANGELOG ├── LICENSE ├── MANIFEST.in ├── PKG-INFO ├── README.rst ├── RELEASING ├── appveyor.yml ├── fetch-win32-wheels ├── makewheels.sh ├── netifaces.c ├── pypi_windows_packages.bat ├── setup.cfg ├── setup.py └── test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al45tair/netifaces/HEAD/.gitignore -------------------------------------------------------------------------------- /.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al45tair/netifaces/HEAD/.hgignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al45tair/netifaces/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al45tair/netifaces/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al45tair/netifaces/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al45tair/netifaces/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al45tair/netifaces/HEAD/PKG-INFO -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al45tair/netifaces/HEAD/README.rst -------------------------------------------------------------------------------- /RELEASING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al45tair/netifaces/HEAD/RELEASING -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al45tair/netifaces/HEAD/appveyor.yml -------------------------------------------------------------------------------- /fetch-win32-wheels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al45tair/netifaces/HEAD/fetch-win32-wheels -------------------------------------------------------------------------------- /makewheels.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al45tair/netifaces/HEAD/makewheels.sh -------------------------------------------------------------------------------- /netifaces.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al45tair/netifaces/HEAD/netifaces.c -------------------------------------------------------------------------------- /pypi_windows_packages.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al45tair/netifaces/HEAD/pypi_windows_packages.bat -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al45tair/netifaces/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al45tair/netifaces/HEAD/setup.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/al45tair/netifaces/HEAD/test.py --------------------------------------------------------------------------------