Spaces:
Sleeping
Sleeping
File size: 1,246 Bytes
4ddd3db | 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 | [build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "MOSAICapp"
version = "0.1.0"
description = "MOSAICapp: Application for Mapping of Subjective Accounts into Interpreted Clusters"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.9"
authors = [
{name = "Romy Beauté", email = "r.beaut@sussex.ac.uk"},
]
keywords = [
"topic modelling",
"phenomenology",
"consciousness research",
"NLP",
"BERTopic",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
]
dependencies = [
"torch",
"streamlit>=1.37",
"pandas",
"numpy",
"nltk",
"bertopic",
"umap-learn",
"hdbscan",
"scikit-learn<1.6",
"sentence-transformers",
"datamapplot",
"huggingface_hub>=0.31.0",
"matplotlib",
]
[project.optional-dependencies]
dev = ["pytest"]
[project.urls]
Homepage = "https://github.com/romybeaute/MOSAICapp"
Repository = "https://github.com/romybeaute/MOSAICapp"
[tool.setuptools.packages.find]
include = ["mosaic_core*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
|