-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (38 loc) · 954 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
31
32
33
34
35
36
37
38
39
from setuptools import setup, find_packages
setup(
name='coggle',
version='0.1.20240114',
description='数据挖掘和人工智能项目最佳实践',
author='Yuzhong Liu',
author_email='finlayliu@qq.com',
packages=find_packages(),
url="https://github.com/coggle-club/coggle",
install_requires=[
'numpy',
'pandas',
'jieba',
'gensim',
'emoji',
'joblib',
'scikit-learn',
'nvitop',
'spacy',
'transformers',
'pdfplumber',
'pypdf',
'python-docx',
'python-pptx',
'beautifulsoup4'
'sqlalchemy',
'torch',
'torchvision',
'sentence-transformers',
'timm'
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
)