-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (43 loc) · 973 Bytes
/
pyproject.toml
File metadata and controls
47 lines (43 loc) · 973 Bytes
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
45
46
47
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pytopicgram"
version = "0.1.0"
description = "Un paquete para análisis de tópicos"
authors = [{name = "SAIL", email = "sail@ugr.es"}]
readme = "README.md"
dependencies = [
"sphinx",
"pandas",
"numpy",
"scikit-learn",
"matplotlib",
"seaborn",
"nltk",
"gensim",
"pyLDAvis",
"tqdm",
"argparse",
"datetime",
"urlextract",
"openai",
"spacy",
"spacytextblob",
"bertopic",
"telethon",
"tiktoken",
"tldextract",
"emoji"
]
classifiers=[
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
]
[tool.setuptools]
packages = ["pytopicgram"]
[project.scripts]
pytopicgram = "pytopicgram.main:main"