-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.cfg
59 lines (51 loc) · 1.49 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
[metadata]
name = extra-model
version = attr: extra_model.__version__
url = https://github.com/wayfair-incubator/extra-model
author = Misha Balyasin
author_email = [email protected]
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.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
[options]
python_requires >=3.9,<3.11
install_requires =
click==8.1.7
numpy==1.26.4
nltk==3.9.1
scikit-learn==1.5.2
vaderSentiment==3.3.2
pandas==2.2.3
langdetect==1.0.9
networkx==3.2.1
gensim==4.3.3
scipy==1.12.0
spacy==3.8.0
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.4.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}"