forked from mikeage/reddit-chat-archiver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 693 Bytes
/
Copy pathsetup.py
File metadata and controls
21 lines (20 loc) · 693 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup
import versioneer
setup(
name="reddit-chat-archiver",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="Reddit Chat Archiver",
url="github.com/mikeage/reddit_chat_archiver",
author="Mike Miller",
author_email="github@mikeage.net",
license="MIT",
packages=["reddit_chat_archiver"],
entry_points={"console_scripts": ["reddit-chat-archiver=reddit_chat_archiver.reddit_chat_archiver:main"]},
install_requires=[
"colorama",
"websocket-client @ git+ssh://git@github.com/mikeage/websocket-client@python39#egg=websocket-client",
"requests",
],
zip_safe=False,
)