-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (31 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
34 lines (31 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[tool.poetry]
name = 'croco_selenium'
version = '0.1.6.post2'
description = 'The package providing ways to interact with Selenium Web Driver actions, such as clicking, sending keys etc.'
authors = ['Alexey <axbelenkov@gmail.com>']
license = 'MIT'
readme = 'README.md'
repository = 'https://github.com/CrocoFactory/croco-selenium'
homepage = 'https://github.com/CrocoFactory/croco-selenium'
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Testing',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3 :: Only',
'License :: OSI Approved :: MIT License',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS'
]
packages = [{ include = 'croco_selenium' }]
[tool.poetry.dependencies]
python = '^3.11'
selenium = "^4.16.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.3"
twine = "^4.0.2"
build = "^1.0.3"
[build-system]
requires = ['poetry-core']
build-backend = 'poetry.core.masonry.api'