This repository has been archived by the owner on May 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
41 lines (37 loc) · 1.53 KB
/
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
38
39
40
41
# coding: utf-8
from setuptools import setup
with open('README.md') as readme_file:
long_description = readme_file.read()
setup(
name="snapstreak_revive",
version="0.0.2",
author="adistomar (Aditya Tomar)",
author_email="[email protected]",
description="Automatically enters required information on the Snapchat support website to retrieve snapstreaks.",
license="MIT",
keywords=['snapchat', 'streaks', 'revive streaks', 'chromedriver', 'automation', 'selenium'],
url="https://github.com/RoastSea8/Snapchat-Streak-Revival",
packages=["snapstreak_revive"],
entry_points = {
'console_scripts': ['revive_streak=snapstreak_revive.command_line:revive_streak'],
},
install_requires=['selenium', 'chromedriver_autoinstall'],
long_description_content_type="text/markdown",
long_description=long_description,
python_requires=">=3.6",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Topic :: Software Development :: Testing",
"Topic :: System :: Installation/Setup",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License",
"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",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
],
)