-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
68 lines (62 loc) · 2.17 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[tool.poetry]
name = "nextcode-sdk"
version = "2.1.3"
description = "Python SDK for GeneDx Services"
license = "MIT"
authors = ["WUXI NextCODE <[email protected]>"]
maintainers = ["GeneDx Engineering <[email protected]>"]
readme = "README.md"
homepage = "https://www.github.com/wuxi-nextcode/nextcode-python-sdk"
repository = "https://www.github.com/wuxi-nextcode/nextcode-python-sdk"
documentation = "https://wuxi-nextcode.github.io/nextcode-python-sdk/"
keywords = []
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Framework :: Jupyter",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
]
packages = [{include = "nextcode"}]
[tool.poetry.dependencies]
python = "^3.9"
python-dateutil = "^2.8.2"
PyYAML = "^6.0"
requests = "^2.29.0"
hjson = "^3.1.0"
boto3 = "^1.26.125"
pandas = {version = "^2.0.1", optional = true}
ipython = {version = "^8.13.1", optional = true}
termcolor = {version = "^2.3.0", optional = true}
tqdm = {version = "^4.65.0", optional = true}
ipywidgets = {version = "^8.0.6", optional = true}
plotly = {version = "^5.14.1", optional = true}
PyJWT = "^2.6.0"
[tool.poetry.group.test.dependencies]
pytest = "^7.3.1"
responses = "^0.23.1"
pytest-cov = "^4.0.0"
asserts = "^0.12.0"
psycopg_c = "^3.2.3"
[tool.poetry.group.docs.dependencies]
Sphinx = "^6.2.1"
sphinx-bootstrap-theme = "^0.8.1"
sphinx-rtd-theme = "^1.2.0"
sphinx-autodoc-typehints = "^1.23.0"
nbsphinx = "^0.9.1"
[tool.poetry.group.dev.dependencies]
ipython = "^8.13.1"
[tool.poetry.extras]
jupyter = ["pandas", "ipython", "termcolor", "tqdm", "ipywidgets", "plotly"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"