-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (50 loc) · 1.35 KB
/
pyproject.toml
File metadata and controls
57 lines (50 loc) · 1.35 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[tool.poetry]
name = "ambra-sdk"
version = "3.22.4.0-1"
description = "Ambrahealth python SDK"
authors = [
"Ambrahealth AI team <python-sdk@ambrahealth.com>",
]
maintainers = [
"Alexander Kapustin <akapustin@ambrahealth.com>",
]
readme = "README.md"
license = 'Apache-2.0'
# pypi url
homepage = 'https://github.com/dicomgrid/sdk-python'
repository = 'https://github.com/dicomgrid/sdk-python'
documentation = 'https://dicomgrid.github.io/sdk-python/index.html'
keywords = ['ambrahealth', 'ambra']
classifiers = [
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.poetry.scripts]
bump_release_candidate = "release:bump_release_candidate"
start_release = "release:start_release"
bump_release = "release:bump_release"
[tool.poetry.dependencies]
python = "^3.6"
requests = "^2.24.0"
aiohttp = "^3.6.2"
python-box = "^5.1.1"
pydicom = "^2.0.0"
[tool.poetry.dev-dependencies]
pytest = "^6.0.1"
mypy = "^0.782"
pytest-cov = "^2.10.1"
wemake-python-styleguide = "^0.14.1"
dynaconf = "^3.1.0"
beautifulsoup4 = "^4.8.2"
jinja2 = "^2.11.1"
requests-mock = "^1.8.0"
sphinx = "^3.2.1"
tox = "^3.19.0"
tomlkit = "^0.5.11"
gitpython = "^3.1.0"
sphinxcontrib-spelling = "^5.3.0"
pytest-asyncio = "^0.15.1"
aioresponses = "^0.7.2"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"