-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
97 lines (96 loc) · 2.63 KB
/
pyproject.toml
File metadata and controls
97 lines (96 loc) · 2.63 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
[
project]
name = "crowdsense"
version = "0.1.0"
description = "AI-powered real-time disaster detection system using ML, anomaly detection, and NLP."
readme = "README.md"
requires-python = ">=3.12"
license = { file = "LICENSE" }
authors = [
{ name = "CrowdSense Contributors" }
]
keywords = ["disaster detection", "AI", "NLP", "anomaly detection", "real-time", "crowdsense"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Security",
]
urls = {"Homepage" = "https://github.com/your-org/crowdsense"}
dependencies = [
"aiohappyeyeballs==2.6.1",
"aiohttp==3.12.15",
"aiohttp-retry==2.9.1",
"aiosignal==1.4.0",
"annotated-types==0.7.0",
"attrs==25.3.0",
"blinker==1.9.0",
"blis==1.3.0",
"catalogue==2.0.10",
"certifi==2025.8.3",
"charset-normalizer==3.4.3",
"click==8.2.1",
"cloudpathlib==0.21.1",
"colorama==0.4.6",
"confection==0.1.5",
"cymem==2.0.11",
"dotenv>=0.9.9",
"en-core-web-sm",
"flask==3.1.1",
"frozenlist==1.7.0",
"idna==3.10",
"itsdangerous==2.2.0",
"jinja2==3.1.6",
"joblib==1.5.1",
"langcodes==3.5.0",
"language-data==1.3.0",
"marisa-trie==1.2.1",
"markdown-it-py==4.0.0",
"markupsafe==3.0.2",
"mdurl==0.1.2",
"multidict==6.6.4",
"murmurhash==1.0.13",
"nltk==3.9.1",
"numpy==2.3.2",
"oauthlib==3.3.1",
"packaging==25.0",
"preshed==3.0.10",
"propcache==0.3.2",
"pydantic==2.11.7",
"pydantic-core==2.33.2",
"pygments==2.19.2",
"pyjwt==2.10.1",
"python-twitter-v2>=0.9.2",
"regex==2025.7.34",
"requests==2.32.4",
"requests-oauthlib==2.0.0",
"rich==14.1.0",
"scikit-learn==1.7.1",
"scipy==1.16.1",
"shellingham==1.5.4",
"smart-open==7.3.0.post1",
"spacy==3.8.7",
"spacy-legacy==3.0.12",
"spacy-loggers==1.0.5",
"srsly==2.5.1",
"thinc==8.3.6",
"threadpoolctl==3.6.0",
"tqdm==4.67.1",
"tweepy==4.16.0",
"twilio==9.7.0",
"typer==0.16.0",
"typing-extensions==4.14.1",
"typing-inspection==0.4.1",
"urllib3==2.5.0",
"wasabi==1.1.3",
"weasel==0.4.1",
"werkzeug==3.1.3",
"wrapt==1.17.3",
"yarl==1.20.1",
]
[tool.uv.sources]
en-core-web-sm = { url = "https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-3.8.0/en_core_web_sm-3.8.0-py3-none-any.whl" }