browserfriend 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,56 @@
1
+ # Cursor
2
+ .cursor/
3
+
4
+ # Python
5
+ __pycache__/
6
+ *.py[cod]
7
+ *$py.class
8
+ *.so
9
+ .Python
10
+ build/
11
+ develop-eggs/
12
+ dist/
13
+ downloads/
14
+ eggs/
15
+ .eggs/
16
+ lib/
17
+ lib64/
18
+ parts/
19
+ sdist/
20
+ var/
21
+ wheels/
22
+ pip-wheel-metadata/
23
+ share/python-wheels/
24
+ *.egg-info/
25
+ .installed.cfg
26
+ *.egg
27
+ MANIFEST
28
+
29
+ # Virtual Environment
30
+ .venv/
31
+ venv/
32
+ ENV/
33
+ env/
34
+
35
+ # IDE
36
+ .vscode/
37
+ .idea/
38
+ *.swp
39
+ *.swo
40
+ *~
41
+
42
+ # Environment variables
43
+ .env
44
+ .env.local
45
+
46
+ # Database
47
+ *.db
48
+ *.sqlite
49
+ *.sqlite3
50
+
51
+ # OS
52
+ .DS_Store
53
+ Thumbs.db
54
+
55
+ # Logs
56
+ *.log
@@ -0,0 +1,39 @@
1
+ Metadata-Version: 2.4
2
+ Name: browserfriend
3
+ Version: 0.1.0
4
+ Summary: Browser tracking and analytics with CLI, dashboard, and LLM integration
5
+ Project-URL: Homepage, https://github.com/prabhakar1234pr/browserfriend
6
+ Project-URL: Repository, https://github.com/prabhakar1234pr/browserfriend
7
+ Author-email: Prabhakar Elavala <prabhakarpr554@gmail.com>
8
+ License: MIT
9
+ Keywords: analytics,browser,cli,dashboard,tracking
10
+ Classifier: Development Status :: 4 - Beta
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: License :: OSI Approved :: MIT License
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Programming Language :: Python :: 3.12
15
+ Requires-Python: >=3.12
16
+ Requires-Dist: email-validator
17
+ Requires-Dist: fastapi
18
+ Requires-Dist: google-genai
19
+ Requires-Dist: jinja2
20
+ Requires-Dist: psutil
21
+ Requires-Dist: pydantic
22
+ Requires-Dist: pydantic-settings
23
+ Requires-Dist: python-dotenv
24
+ Requires-Dist: resend
25
+ Requires-Dist: rich
26
+ Requires-Dist: sqlalchemy
27
+ Requires-Dist: typer
28
+ Requires-Dist: uvicorn
29
+ Provides-Extra: dev
30
+ Requires-Dist: black; extra == 'dev'
31
+ Requires-Dist: httpx; extra == 'dev'
32
+ Requires-Dist: isort; extra == 'dev'
33
+ Requires-Dist: pre-commit; extra == 'dev'
34
+ Requires-Dist: pylint; extra == 'dev'
35
+ Requires-Dist: pytest; extra == 'dev'
36
+ Requires-Dist: ruff; extra == 'dev'
37
+ Description-Content-Type: text/markdown
38
+
39
+ # browserfriend
@@ -0,0 +1 @@
1
+ # browserfriend
File without changes