Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
HalilDeniz authored Dec 2, 2023
1 parent fef3609 commit 6ca41ae
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
from setuptools import setup, find_packages

setup(
name='MacMaster: MAC Address Changer',
version='1.0.0',
author='Halil İbrahim Deniz',
author_email='[email protected]',
description='A versatile MAC Address Changer tool for network anonymity and testing.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/HalilDeniz/MacMaster',
packages=find_packages(),
install_requires=[
'colorama',
],
entry_points={
'console_scripts': [
'macmaster=macmaster.macmaster:main',
],
},
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.6',
)

0 comments on commit 6ca41ae

Please sign in to comment.