1
1
[project ]
2
- name = " browser-use-sdk "
2
+ name = " browser-use"
3
3
4
4
[tool .poetry ]
5
- name = " browser-use-sdk "
6
- version = " 2 .0.1 "
5
+ name = " browser-use"
6
+ version = " 0 .0.0 "
7
7
description = " "
8
8
readme = " README.md"
9
9
authors = []
@@ -24,9 +24,11 @@ classifiers = [
24
24
" Operating System :: POSIX :: Linux" ,
25
25
" Operating System :: Microsoft :: Windows" ,
26
26
" Topic :: Software Development :: Libraries :: Python Modules" ,
27
- " Typing :: Typed" ,
27
+ " Typing :: Typed"
28
+ ]
29
+ packages = [
30
+ { include = " browser_use_sdk" , from = " src" }
28
31
]
29
- packages = [{ include = " browser_use" , from = " src" }]
30
32
31
33
[project .urls ]
32
34
Repository = ' https://github.com/browser-use/browser-use-python'
@@ -47,7 +49,7 @@ types-python-dateutil = "^2.9.0.20240316"
47
49
ruff = " ==0.11.5"
48
50
49
51
[tool .pytest .ini_options ]
50
- testpaths = [" tests" ]
52
+ testpaths = [ " tests" ]
51
53
asyncio_mode = " auto"
52
54
53
55
[tool .mypy ]
@@ -58,20 +60,20 @@ line-length = 120
58
60
59
61
[tool .ruff .lint ]
60
62
select = [
61
- " E" , # pycodestyle errors
62
- " F" , # pyflakes
63
- " I" , # isort
63
+ " E" , # pycodestyle errors
64
+ " F" , # pyflakes
65
+ " I" , # isort
64
66
]
65
67
ignore = [
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
75
77
]
76
78
77
79
[tool .ruff .lint .isort ]
0 commit comments