|
1 | 1 | [build-system] |
2 | | -requires = ["setuptools>=61.8", "wheel"] |
| 2 | +requires = ["setuptools", "wheel"] |
3 | 3 | build-backend = "setuptools.build_meta" |
4 | 4 |
|
5 | | -[tool.setuptools.packages.find] |
6 | | -include = ["caqui*"] |
7 | | -exclude = ["tests*", "utils", ".vscode", ".git*", "dist"] |
8 | | - |
9 | 5 | [project] |
10 | 6 | name = "caqui" |
11 | | -version = "5.0.0-rc" |
12 | | -authors = [ |
13 | | - { name="Douglas Cardoso", email="noemail@noemail.com" }, |
14 | | -] |
| 7 | +version = "5.0.0rc2" |
15 | 8 | description = "Run asynchronous commands in WebDrivers" |
16 | | -keywords = ["automation", "asynchronous", "test", "crawler", "robotic process automation", "rpa"] |
17 | 9 | readme = "README.md" |
18 | 10 | requires-python = ">=3.7" |
| 11 | + |
| 12 | +authors = [ |
| 13 | + { name="Douglas Cardoso", email="noemail@noemail.com" } |
| 14 | +] |
| 15 | + |
19 | 16 | classifiers = [ |
20 | 17 | "Development Status :: 4 - Beta", |
21 | 18 | "Programming Language :: Python :: 3", |
22 | 19 | "Operating System :: OS Independent", |
23 | 20 | ] |
24 | | -[project.license] |
25 | | -"file" = "LICENSE" |
26 | 21 |
|
27 | 22 | dependencies = [ |
28 | 23 | "requests", |
29 | 24 | "aiohttp", |
30 | 25 | "webdriver_manager", |
31 | 26 | "types-requests", |
32 | 27 | "beautifulsoup4", |
33 | | - "git+https://github.com/HyperionGray/python-chrome-devtools-protocol.git@5915dce242d4f0cd8c5f8a5e843a535dacc57fc3" |
| 28 | + "chrome-devtools-protocol @ git+https://github.com/HyperionGray/python-chrome-devtools-protocol.git@5915dce242d4f0cd8c5f8a5e843a535dacc57fc3" |
34 | 29 | ] |
35 | 30 |
|
| 31 | +license = { file = "LICENSE" } |
| 32 | + |
36 | 33 | [project.urls] |
37 | | -"Homepage" = "https://github.com/douglasdcm/caqui" |
| 34 | +Homepage = "https://github.com/douglasdcm/caqui" |
38 | 35 | "Bug Tracker" = "https://github.com/douglasdcm/caqui/issues" |
| 36 | + |
| 37 | +[tool.setuptools.packages.find] |
| 38 | +where = ["."] |
| 39 | +include = ["caqui*"] |
0 commit comments