-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.cfg
72 lines (66 loc) · 1.6 KB
/
setup.cfg
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[metadata]
name = streamlit_topic_modeling
version = attr:streamlit_topic_modeling.__version__
description = A topic modeling GUI application using Streamlit.
description-file = README.md
long_description = file:README.md
long_description_content_type = text/markdown
author = Bryan Patrick Wood
author_email = bpw1621@gmail.com
url = 'https://github.com/bpw1621/streamlit_topic_modeling'
download_url = https://github.com/bpw1621/streamlit_topic_modeling/archive/master.zip
project_urls =
Homepage = https://bpw1621.github.io/streamlit_topic_modeling
Source Code = https://github.com/bpw1621/streamlit_topic_modeling
Documentation = https://streamlit_topic_modeling.readthedocs.io/en/latest/
Bug Tracker = https://github.com/bpw1621/streamlit_topic_modeling/issues
classifiers =
Development Status :: 3 - Alpha
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3 :: Only
;keywords = ...
;license = ...
[options]
zip_safe = False
include_package_data = True
packages = find:
install_requires =
gensim
matplotlib
nltk
numpy
pandas
plotly-express
plotly
pyldavis
regex
scikit-learn
seaborn
streamlit
umap-learn
wordcloud
tests_require =
pytest
pytest-mock
pytest-cov
setup_requires =
setuptools
pytest-runner
[bdist_wheel]
universal = true
[options.extras_require]
dev =
flake8
tox
pretty_errors
twine
doc =
sphinx
sphinx_rtd_theme
towncrier
[aliases]
test = pytest
[tool:pytest]
collect_ignore = ['setup.py']