├── .gitignore ├── CHANGES.md ├── LICENSE ├── README.md ├── pandas_sets ├── __init__.py └── sets.py ├── requirements.txt ├── setup.py └── tests └── test_sets.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | *egg-info/ 3 | build/ 4 | dist/ 5 | *.pyc 6 | -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florents-Tselai/pandas-sets/HEAD/CHANGES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florents-Tselai/pandas-sets/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florents-Tselai/pandas-sets/HEAD/README.md -------------------------------------------------------------------------------- /pandas_sets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florents-Tselai/pandas-sets/HEAD/pandas_sets/__init__.py -------------------------------------------------------------------------------- /pandas_sets/sets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florents-Tselai/pandas-sets/HEAD/pandas_sets/sets.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pandas>=0.24.0 -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florents-Tselai/pandas-sets/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_sets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florents-Tselai/pandas-sets/HEAD/tests/test_sets.py --------------------------------------------------------------------------------