forked from dmmiller612/bert-extractive-summarizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
18 lines (17 loc) · 831 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from setuptools import setup
from setuptools import find_packages
setup(name='bert-extractive-summarizer',
version='0.7.1',
description='Extractive Text Summarization with BERT',
keywords=['bert', 'pytorch', 'machine learning',
'deep learning', 'extractive summarization', 'summary'],
long_description=open("README.md", "r", encoding='utf-8').read(),
long_description_content_type="text/markdown",
url='https://github.com/dmmiller612/bert-extractive-summarizer',
download_url='https://github.com/dmmiller612/bert-extractive-summarizer/archive/0.7.1.tar.gz',
author='Derek Miller',
author_email='dmmiller612@gmail.com',
install_requires=['transformers', 'scikit-learn', 'spacy'],
license='MIT',
packages=find_packages(),
zip_safe=False)