mirror of
https://github.com/MattKeeley/Spoofy.git
synced 2026-02-03 05:23:24 +00:00
12 lines
303 B
Python
12 lines
303 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name="Spoofy",
|
|
version="1.0.2",
|
|
packages=[ "modules", "files" ],
|
|
py_modules=["spoofy"],
|
|
install_requires=[ "colorama", "dnspython>= 2.2.1", "tldextract", "pandas", "openpyxl" ],
|
|
entry_points={ "console_scripts": [ "spoofy=spoofy:main" ] }
|
|
)
|
|
|