-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (22 loc) · 955 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(name="gpsnetxmlelk",
version="1.0.0",
author="Krzysztof Otręba",
author_email="[email protected]",
download_url="https://github.com/krzotr/gpsnetxmlelk",
url="https://github.com/krzotr/gpsnetxmlelk",
install_requires=["elasticsearch", "gpsnetxml"],
dependency_links=[
"http://github.com/krzotr/gpsnetxml/tarball/dev#egg=gpsnetxml"
],
long_description="""Insert .gpsxml and .netxml into Elasticsearch""",
packages=["gpsnetxmlelk"],
scripts=['bin/gpsnetxml2elk'],
package_data={"gpsnetxmlelk": ["asset/*"]},
classifiers=["Programming Language :: Python",
"Topic :: Internet :: Log Analysis",
"Topic :: System :: Networking",
"Topic :: Utilities"],
keywords="kismet gpsxml netxml gpsnetxml wifi wpa wpa2 wep elasticsearch")