-
Notifications
You must be signed in to change notification settings - Fork 36
/
setup.py
29 lines (28 loc) · 885 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
25
26
27
28
29
from setuptools import setup
# The text of the README file
README = open("./README.md",'r').read()
# Setup
setup(
name = 'manuf',
packages = ['manuf'],
version = '1.1.5',
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'],
entry_points = {
'console_scripts': [
'manuf=manuf.manuf:main'
],
},
package_data = {
'manuf': ['manuf']
},
long_description = README,
long_description_content_type = "text/markdown"
)
# To publish package run:
# $ rm -rf dist #Delete all previous build that you might not want to upload
# $ python setup.py build check sdist bdist_wheel #Build
# $ twine upload --verbose dist/* #Upload