From 9dee2532578be2990c5fedf382604eb0601a8831 Mon Sep 17 00:00:00 2001 From: Michael Huang Date: Tue, 22 Aug 2017 22:59:16 -0700 Subject: [PATCH 1/2] Add LICENSE.txt and update copyright --- LICENSE.txt | 10 ++++++++++ manuf/manuf.py | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 LICENSE.txt diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..cc053ab --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,10 @@ +manuf.py: Parser library for Wireshark's OUI database. +Copyright (c) 2017 Michael Huang + +This library is free software. It is dual licensed under the terms of the GNU Lesser General +Public License version 3.0 (or any later version) and the Apache License version 2.0. + +For more information, see: + + + diff --git a/manuf/manuf.py b/manuf/manuf.py index 065929f..87b6861 100755 --- a/manuf/manuf.py +++ b/manuf/manuf.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # manuf.py: Parser library for Wireshark's OUI database. -# Copyright (c) 2016 Michael Huang +# Copyright (c) 2017 Michael Huang # # This library is free software. It is dual licensed under the terms of the GNU Lesser General # Public License version 3.0 (or any later version) and the Apache License version 2.0. From 71d1db224ea19725018c492b89ed3043be269e1b Mon Sep 17 00:00:00 2001 From: Michael Huang Date: Tue, 22 Aug 2017 23:11:23 -0700 Subject: [PATCH 2/2] Add pypi files --- setup.cfg | 3 +++ setup.py | 13 +++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 setup.cfg create mode 100644 setup.py diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..8c28267 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,3 @@ +[metadata] +description-file = README.md + diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..5b71acf --- /dev/null +++ b/setup.py @@ -0,0 +1,13 @@ +from setuptools import setup + +setup( + name = 'manuf', + packages = ['manuf'], + version = '1.0.0', + description = 'Parser library for Wireshark\'s OUI database', + author = 'Michael Huang', + url = 'https://github.com/coolbho3k/manuf/', + license = 'Apache License 2.0 or GPLv3', + keywords = ['manuf', 'mac address', 'networking'], +) +