-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from coolbho3k/pypi_submit
Pypi submit
- Loading branch information
Showing
4 changed files
with
27 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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: | ||
|
||
<http://www.gnu.org/licenses/> | ||
<http://www.apache.org/licenses/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[metadata] | ||
description-file = README.md | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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'], | ||
) | ||
|