├── .gitignore ├── LICENSE ├── README.rst ├── datedelta.py ├── pyproject.toml ├── test_datedelta.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaugustin/datedelta/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaugustin/datedelta/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaugustin/datedelta/HEAD/README.rst -------------------------------------------------------------------------------- /datedelta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaugustin/datedelta/HEAD/datedelta.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaugustin/datedelta/HEAD/pyproject.toml -------------------------------------------------------------------------------- /test_datedelta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaugustin/datedelta/HEAD/test_datedelta.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaugustin/datedelta/HEAD/tox.ini --------------------------------------------------------------------------------