11[project ]
2- name = " browser-use-sdk "
2+ name = " browser-use"
33
44[tool .poetry ]
5- name = " browser-use-sdk "
6- version = " 2 .0.1 "
5+ name = " browser-use"
6+ version = " 0 .0.0 "
77description = " "
88readme = " README.md"
99authors = []
@@ -24,9 +24,11 @@ classifiers = [
2424 " Operating System :: POSIX :: Linux" ,
2525 " Operating System :: Microsoft :: Windows" ,
2626 " Topic :: Software Development :: Libraries :: Python Modules" ,
27- " Typing :: Typed" ,
27+ " Typing :: Typed"
28+ ]
29+ packages = [
30+ { include = " browser_use_sdk" , from = " src" }
2831]
29- packages = [{ include = " browser_use" , from = " src" }]
3032
3133[project .urls ]
3234Repository = ' https://github.com/browser-use/browser-use-python'
@@ -47,7 +49,7 @@ types-python-dateutil = "^2.9.0.20240316"
4749ruff = " ==0.11.5"
4850
4951[tool .pytest .ini_options ]
50- testpaths = [" tests" ]
52+ testpaths = [ " tests" ]
5153asyncio_mode = " auto"
5254
5355[tool .mypy ]
@@ -58,20 +60,20 @@ line-length = 120
5860
5961[tool .ruff .lint ]
6062select = [
61- " E" , # pycodestyle errors
62- " F" , # pyflakes
63- " I" , # isort
63+ " E" , # pycodestyle errors
64+ " F" , # pyflakes
65+ " I" , # isort
6466]
6567ignore = [
66- " E402" , # Module level import not at top of file
67- " E501" , # Line too long
68- " E711" , # Comparison to `None` should be `cond is not None`
69- " E712" , # Avoid equality comparisons to `True`; use `if ...:` checks
70- " E721" , # Use `is` and `is not` for type comparisons, or `isinstance()` for insinstance checks
71- " E722" , # Do not use bare `except`
72- " E731" , # Do not assign a `lambda` expression, use a `def`
73- " F821" , # Undefined name
74- " F841" , # Local variable ... is assigned to but never used
68+ " E402" , # Module level import not at top of file
69+ " E501" , # Line too long
70+ " E711" , # Comparison to `None` should be `cond is not None`
71+ " E712" , # Avoid equality comparisons to `True`; use `if ...:` checks
72+ " E721" , # Use `is` and `is not` for type comparisons, or `isinstance()` for insinstance checks
73+ " E722" , # Do not use bare `except`
74+ " E731" , # Do not assign a `lambda` expression, use a `def`
75+ " F821" , # Undefined name
76+ " F841" # Local variable ... is assigned to but never used
7577]
7678
7779[tool .ruff .lint .isort ]
0 commit comments