├── .gitattributes ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── anonymizedf ├── __init__.py ├── _version.py └── anonymizedf.py ├── setup.cfg ├── setup.py └── versioneer.py /.gitattributes: -------------------------------------------------------------------------------- 1 | anonymizedf/_version.py export-subst 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexFrid/anonymizedf/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexFrid/anonymizedf/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexFrid/anonymizedf/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexFrid/anonymizedf/HEAD/README.md -------------------------------------------------------------------------------- /anonymizedf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexFrid/anonymizedf/HEAD/anonymizedf/__init__.py -------------------------------------------------------------------------------- /anonymizedf/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexFrid/anonymizedf/HEAD/anonymizedf/_version.py -------------------------------------------------------------------------------- /anonymizedf/anonymizedf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexFrid/anonymizedf/HEAD/anonymizedf/anonymizedf.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexFrid/anonymizedf/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexFrid/anonymizedf/HEAD/setup.py -------------------------------------------------------------------------------- /versioneer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexFrid/anonymizedf/HEAD/versioneer.py --------------------------------------------------------------------------------