-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
44 lines (42 loc) · 1.11 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
36
37
38
39
40
41
42
43
44
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='pyBibX',
version='4.0.1',
license='GNU',
author='Valdecy Pereira',
author_email='[email protected]',
url='https://github.com/Valdecy/pyBibX',
packages=find_packages(),
include_package_data=True,
install_requires=[
'bertopic',
'bert-extractive-summarizer',
'chardet',
'gensim',
'llmx',
'matplotlib',
'networkx',
'numpy',
'pandas',
'plotly',
'scipy',
'scikit-learn',
'sentencepiece',
'sentence-transformers',
'squarify',
'torch',
'torchvision',
'torchaudio',
'transformers',
'umap-learn',
'openai',
'wordcloud'
],
zip_safe=True,
description='A Bibliometric and Scientometric Library Powered with Artificial Intelligence Tools',
long_description=long_description,
long_description_content_type='text/markdown',
)