-
Notifications
You must be signed in to change notification settings - Fork 447
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (26 loc) · 886 Bytes
/
setup.py
File metadata and controls
31 lines (26 loc) · 886 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/usr/bin/env python3
"""
Specan setup
Install script for the Ubertooth spectrum analyzer tool
Usage: python setup.py install
This file is part of project Ubertooth
Copyright 2012 Dominic Spill
"""
from distutils.core import setup
setup(
name = "specan",
description = "A tool for reading spectrum analyzer data from an Ubertooth device",
author = "Jared Boone, Michael Ossmann, Dominic Spill",
url = "https://github.com/greatscottgadgets/ubertooth/",
license = "GPL",
version = '1',
packages = ['specan'],
scripts = ['ubertooth-specan-ui'],
classifiers=[
'Development Status :: 5 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Programming Language :: Python',
'Operating System :: OS Independent',
],
)