-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (23 loc) · 879 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
from setuptools import setup, find_packages
setup(
long_description=open("README.md", "r").read(),
name="pyoui",
version="0.55",
description="lookup the ieee's oui table by mac, mac prefix, org name or country",
author="Pascal Eberlein",
author_email="pascal@eberlein.io",
url="https://github.com/nbdy/pyoui",
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
],
keywords="oui mac lookup",
packages=find_packages(),
include_package_data=True,
entry_points={'console_scripts': ['pyoui = pyoui.__main__:main']},
install_requires=open("requirements.txt").readlines(),
long_description_content_type="text/markdown"
)