youdotcom 0.0.1__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,10 @@
1
+ Metadata-Version: 2.4
2
+ Name: youdotcom
3
+ Version: 0.0.1
4
+ Summary: You.com Python SDK.
5
+ Author: You.com
6
+ Requires-Python: >=3.9.2
7
+ Description-Content-Type: text/markdown
8
+ Requires-Dist: httpcore>=1.0.9
9
+ Requires-Dist: httpx>=0.28.1
10
+ Requires-Dist: pydantic>=2.11.2
File without changes
@@ -0,0 +1,6 @@
1
+ def main():
2
+ print("Hello from youdotcom!")
3
+
4
+
5
+ if __name__ == "__main__":
6
+ main()
@@ -0,0 +1,57 @@
1
+ [project]
2
+ name = "youdotcom"
3
+ version = "0.0.1"
4
+ description = "You.com Python SDK."
5
+ authors = [{ name = "You.com" },]
6
+ readme = "README.md"
7
+ requires-python = ">=3.9.2"
8
+ dependencies = [
9
+ "httpcore >=1.0.9",
10
+ "httpx >=0.28.1",
11
+ "pydantic >=2.11.2",
12
+ ]
13
+
14
+ [dependency-groups]
15
+ dev = [
16
+ "mypy ==1.15.0",
17
+ "pylint ==3.2.3",
18
+ "pyright ==1.1.405",
19
+ "pytest (>=8.4.1,<9.0.0)",
20
+ "pytest-asyncio (>=1.2.0,<2.0.0)",
21
+ "pytest-xdist (>=3.8.0,<4.0.0)",
22
+ ]
23
+
24
+ [tool.setuptools.package-data]
25
+ "*" = ["py.typed"]
26
+
27
+ [build-system]
28
+ requires = ["setuptools>=80", "wheel"]
29
+ build-backend = "setuptools.build_meta"
30
+
31
+ [tool.pytest.ini_options]
32
+ asyncio_default_fixture_loop_scope = "function"
33
+ pythonpath = ["src"]
34
+
35
+ [tool.mypy]
36
+ disable_error_code = "misc"
37
+ explicit_package_bases = true
38
+ mypy_path = "src"
39
+
40
+ [[tool.mypy.overrides]]
41
+ module = "typing_inspect"
42
+ ignore_missing_imports = true
43
+
44
+ [[tool.mypy.overrides]]
45
+ module = "jsonpath"
46
+ ignore_missing_imports = true
47
+
48
+ [tool.pyright]
49
+ venvPath = "."
50
+ venv = ".venv"
51
+
52
+ [tool.uv.workspace]
53
+ members = [
54
+ "youdotcom",
55
+ ]
56
+
57
+
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,10 @@
1
+ Metadata-Version: 2.4
2
+ Name: youdotcom
3
+ Version: 0.0.1
4
+ Summary: You.com Python SDK.
5
+ Author: You.com
6
+ Requires-Python: >=3.9.2
7
+ Description-Content-Type: text/markdown
8
+ Requires-Dist: httpcore>=1.0.9
9
+ Requires-Dist: httpx>=0.28.1
10
+ Requires-Dist: pydantic>=2.11.2
@@ -0,0 +1,8 @@
1
+ README.md
2
+ main.py
3
+ pyproject.toml
4
+ youdotcom.egg-info/PKG-INFO
5
+ youdotcom.egg-info/SOURCES.txt
6
+ youdotcom.egg-info/dependency_links.txt
7
+ youdotcom.egg-info/requires.txt
8
+ youdotcom.egg-info/top_level.txt
@@ -0,0 +1,3 @@
1
+ httpcore>=1.0.9
2
+ httpx>=0.28.1
3
+ pydantic>=2.11.2
@@ -0,0 +1 @@
1
+ main