forked from ownaginatious/fbchat-archive-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (27 loc) · 949 Bytes
/
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
#! /usr/bin/env python
from setuptools import setup, find_packages
from io import open
import versioneer
setup(
name='fbchat_archive_parser',
packages=find_packages(exclude=["tests"]),
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='A library/command line utility for parsing Facebook '
'chat history',
author='Dillon Dixon',
author_email='[email protected]',
url='https://github.com/ownaginatious/fbchat-archive-parser',
license='MIT',
keywords=['facebook', 'chat', 'messenger', 'history'],
classifiers=['Environment :: Console'],
install_requires=[line.strip()
for line in open("requirements.txt", "r",
encoding="utf-8").readlines()],
test_suite="tests",
entry_points={
"console_scripts": [
"fbcap = fbchat_archive_parser.main:main",
],
},
)