-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
23 lines (21 loc) · 909 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(name="gpsnetxml",
version="1.0.0",
author="Krzysztof Otręba",
author_email="[email protected]",
download_url="https://github.com/krzotr/gpsnetxml",
url="https://github.com/krzotr/gpsnetxml",
long_description="""Convert gpsxml and netxml files to JSON format""",
packages=["gpsnetxml"],
scripts=['bin/gpsnetxml'],
package_data={"gpsnetxml": ["asset/*.netxml",
"asset/*.json",
"asset/*.gpsxml",
"asset/xsd/*"]},
classifiers=["Programming Language :: Python",
"Topic :: Internet :: Log Analysis",
"Topic :: System :: Networking",
"Topic :: Utilities"],
keywords="kismet gpsxml netxml wifi wpa wpa2 wep")