forked from TechWiz-3/who-unfollowed-me
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (31 loc) · 1 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
from setuptools import setup
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: Console :: Curses",
"Intended Audience :: Developers",
"Operating System :: Microsoft :: Windows",
"Operating System :: Linux :: OSX",
"License :: GNU General Public License v3.0",
"Programming Language :: Python :: 3",
"Topic :: Utilities",
]
# Get the long description from the README file
with open("README.md", encoding="utf-8") as f:
read_file = f.read()
setup(
name="unfollow",
url="https://github.com/TechWiz-3/who-unfollowed-me",
author="Zac the Wise aka TechWiz-3",
version="4.0.1",
description="😡 Python CLI tool that shows you who has unfollowed you on GitHub",
packages=["unfollow"],
long_description=read_file,
long_description_content_type="text/markdown",
entry_points="""
[console_scripts]
unfollow=unfollow.cli:main
""",
classifiers=classifiers,
install_requires=["rich"],
)