-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
51 lines (45 loc) · 1.15 KB
/
pyproject.toml
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[tool.poetry]
name = "rwslib"
version = "1.2.12"
description = "Rave Web Services for Python"
authors = ["Ian Sparks <isparks@trialgrid.com>"]
maintainers = ["Geoff Low <geoff.low@3ds.com>"]
readme = "README.md"
repository = "https://github.com/mdsol/rwslib"
documentation = "https://rwslib.readthedocs.io"
license = "MIT"
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
]
packages = [
{ include = "rwslib" },
]
[tool.poetry.dependencies]
python = ">=3.7.0,<4"
lxml = "*"
requests = "*"
six = "*"
click = "*"
faker = "*"
urllib3 = "*"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
httpretty = "*"
mock = "*"
coverage = "*"
pytest = "*"
tox = "*"
[tool.poetry.group.docs.dependencies]
Sphinx = "^5.1.1"
sphinx-pyproject = "^0.3.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"