0
0
Fork 0
mirror of https://github.com/alerta/alerta-contrib.git synced 2025-03-19 06:33:17 +00:00
alerta_alerta-contrib/plugins/geoip/setup.py

27 lines
606 B
Python
Raw Permalink Normal View History

2015-01-30 15:22:43 +00:00
2016-09-14 11:01:37 +00:00
from setuptools import setup, find_packages
2015-01-30 22:49:27 +00:00
2016-11-20 21:59:18 +00:00
version = '0.3.2'
2015-01-30 15:22:43 +00:00
2016-09-14 11:01:37 +00:00
setup(
2015-01-30 15:22:43 +00:00
name="alerta-geoip",
version=version,
description='Alerta plugin for GeoIP Lookup',
url='https://github.com/alerta/alerta-contrib',
license='Apache License 2.0',
author='Nick Satterly',
author_email='nick.satterly@theguardian.com',
2016-09-14 11:01:37 +00:00
packages=find_packages(),
py_modules=['alerta_geoip'],
2015-01-30 15:22:43 +00:00
install_requires=[
2016-09-14 11:01:37 +00:00
'requests'
2015-01-30 15:22:43 +00:00
],
include_package_data=True,
2016-09-14 11:01:37 +00:00
zip_safe=True,
2015-01-30 15:22:43 +00:00
entry_points={
'alerta.plugins': [
'geoip = alerta_geoip:GeoLocation'
2015-01-30 15:22:43 +00:00
]
}
)