Files

46 lines
1.3 KiB
Python

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="nextor",
version="2.0",
author="Stalin",
author_email="stalin@example.com",
description="Automatically rotate Tor exit nodes and display updated IP address",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/0x5t4l1n/NexTOR_IP_CHANGER",
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Environment :: Console",
"Topic :: Internet",
"Topic :: Security",
"Topic :: Utilities",
],
python_requires=">=3.6",
install_requires=[
"requests[socks]>=2.22.0",
"stem>=1.8.0",
],
entry_points={
"console_scripts": [
"nextor=Nex_Tor_IP_changer.NexTOR:main",
],
},
include_package_data=True,
zip_safe=False,
)