forked from wayfair-incubator/extra-model
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
57 lines (49 loc) · 1.42 KB
/
Copy pathsetup.cfg
File metadata and controls
57 lines (49 loc) · 1.42 KB
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
[metadata]
name = extra-model
version = attr: extra_model.__version__
url = https://github.com/wayfair-incubator/extra-model
author = Misha Balyasin
author_email = mbalyasin@wayfair.com
description = Code to run the Extra algorithm for unsupervised topic extraction.
long_description = file: README.md
long_description_content_type = text/markdown
license = MIT License
license_file = LICENSE
classifiers =
Development Status :: 4 - Beta
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
[options]
python_requires >=3.8,<3.10
install_requires =
click==8.0.3
numpy==1.21.3
nltk==3.6.5
scikit-learn==1.0.1
vaderSentiment==3.3.2
pandas==1.3.4
pycld3==0.22
networkx==2.6.3
gensim==4.1.2
spacy==3.1.3
packages = find:
[options.package_data]
extra_model = py.typed
[options.packages.find]
exclude = "*.tests", "*.tests.*", "tests.*", "tests"
[options.entry_points]
console_scripts =
extra-model = extra_model._cli:entrypoint
extra-model-setup = extra_model._cli:entrypoint_setup
[bumpversion]
current_version = 0.3.0
commit = True
tag = True
[bumpversion:file:extra_model/__init__.py]
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"
[bumpversion:file:tests/test_init.py]
search = __version__ == "{current_version}"
replace = __version__ == "{new_version}"