-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
30 lines (28 loc) · 856 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
29
30
from setuptools import setup, find_packages
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / 'README.md').read_text()
setup(
name='pyAutoSummarizer',
version='1.1.8',
license='GNU',
author='Valdecy Pereira',
author_email='[email protected]',
url='https://github.com/Valdecy/pyAutoSummarizer',
packages=find_packages(),
include_package_data=True,
install_requires=[
'chardet',
'llmx',
'numpy',
'regex',
'scikit-learn',
'sentence_transformers',
'openai',
'transformers'
],
zip_safe=True,
description='An Extractive and Abstractive Summarization Library Powered with Artificial Intelligence',
long_description=long_description,
long_description_content_type='text/markdown',
)