├── .gitignore ├── MANIFEST.in ├── README.rst ├── sentry_phabricator ├── __init__.py ├── models.py └── plugin.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.egg-info/ 3 | /dist 4 | /build -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-phabricator/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-phabricator/HEAD/README.rst -------------------------------------------------------------------------------- /sentry_phabricator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-phabricator/HEAD/sentry_phabricator/__init__.py -------------------------------------------------------------------------------- /sentry_phabricator/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-phabricator/HEAD/sentry_phabricator/models.py -------------------------------------------------------------------------------- /sentry_phabricator/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-phabricator/HEAD/sentry_phabricator/plugin.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-phabricator/HEAD/setup.py --------------------------------------------------------------------------------