forked from feross/SpoofMAC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (33 loc) · 935 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
30
31
32
33
34
35
36
37
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Easily spoof your MAC address in OS X, Windows & Linux.
"""
from setuptools import setup, find_packages
def get_version():
"""
Load and return the current package version.
"""
local_results = {}
exec(compile(open('spoofmac/version.py').read(), 'spoofmac/version.py', 'exec'), {}, local_results)
return local_results['__version__']
if __name__ == '__main__':
setup(
name='SpoofMAC',
version=get_version(),
description=__doc__,
long_description=__doc__,
author='Feross Aboukhadijeh',
author_email='[email protected]',
url='http://feross.org/spoofmac/',
packages=find_packages(),
include_package_data=True,
install_requires=[
'docopt'
],
scripts=[
'scripts/spoof-mac.py',
'scripts/spoof-mac'
],
license='MIT'
)