onepot 0.1.0__tar.gz → 0.1.2__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.
@@ -1,12 +1,12 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: onepot
3
- Version: 0.1.0
3
+ Version: 0.1.2
4
4
  Summary: Python client for the onepot API
5
5
  Requires-Dist: httpx==0.28.1
6
6
  Requires-Python: >=3.11
7
7
  Description-Content-Type: text/markdown
8
8
 
9
- # onepot-api
9
+ # onepot-python
10
10
 
11
11
  Python client for the onepot API.
12
12
 
@@ -52,13 +52,13 @@ Credits are charged per SMILES in the query:
52
52
  "query_inchikey": "VZZJRYRQSPEMTK-CALCHBBNSA-N",
53
53
  "results": [
54
54
  {
55
- "smiles": "CCO",
56
- "inchikey": "VZZJRYRQSPEMTK-CALCHBBNSA-N",
55
+ "chemistry_risk": "medium", # if include_chemistry_risk=True
56
+ "chemistry_risk_score": 0.5, # if include_chemistry_risk_score=True
57
+ "inchikey": "VZZJRYRQSPEMTK-UHFFFAOYSA-N",
58
+ "price_usd": 590,
57
59
  "similarity": 1.0,
58
- "supplier_risk": "medium",
59
- "price_usd": 250,
60
- "chemistry_risk": "medium", # if include_chemistry_risk=True
61
- "chemistry_risk_score": 0.5 # if include_chemistry_risk_score=True
60
+ "smiles": "Cc1c(C(=O)Nc2ccc(N3CC(C)OC(C)C3)nc2)cccc1-c1ccc(OC(F)(F)F)cc1",
61
+ "supplier_risk": "high",
62
62
  },
63
63
  ...
64
64
  ]
@@ -1,4 +1,4 @@
1
- # onepot-api
1
+ # onepot-python
2
2
 
3
3
  Python client for the onepot API.
4
4
 
@@ -44,13 +44,13 @@ Credits are charged per SMILES in the query:
44
44
  "query_inchikey": "VZZJRYRQSPEMTK-CALCHBBNSA-N",
45
45
  "results": [
46
46
  {
47
- "smiles": "CCO",
48
- "inchikey": "VZZJRYRQSPEMTK-CALCHBBNSA-N",
47
+ "chemistry_risk": "medium", # if include_chemistry_risk=True
48
+ "chemistry_risk_score": 0.5, # if include_chemistry_risk_score=True
49
+ "inchikey": "VZZJRYRQSPEMTK-UHFFFAOYSA-N",
50
+ "price_usd": 590,
49
51
  "similarity": 1.0,
50
- "supplier_risk": "medium",
51
- "price_usd": 250,
52
- "chemistry_risk": "medium", # if include_chemistry_risk=True
53
- "chemistry_risk_score": 0.5 # if include_chemistry_risk_score=True
52
+ "smiles": "Cc1c(C(=O)Nc2ccc(N3CC(C)OC(C)C3)nc2)cccc1-c1ccc(OC(F)(F)F)cc1",
53
+ "supplier_risk": "high",
54
54
  },
55
55
  ...
56
56
  ]
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "onepot"
3
- version = "0.1.0"
3
+ version = "0.1.2"
4
4
  description = "Python client for the onepot API"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.11"
@@ -9,3 +9,6 @@ dependencies = ["httpx==0.28.1"]
9
9
  [build-system]
10
10
  requires = ["uv_build"]
11
11
  build-backend = "uv_build"
12
+
13
+ [tool.uv.build-backend]
14
+ module-name = "onepot"
File without changes
File without changes
File without changes