File size: 781 Bytes
9d54b72 |
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 = "vcell_client"
version = "1.0.0"
description = "VCell API"
authors = ["VCell API Support <vcell_support@uchc.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/GIT_USER_ID/GIT_REPO_ID"
keywords = ["OpenAPI", "OpenAPI-Generator", "VCell API"]
include = ["vcell_client/py.typed"]
[tool.poetry.dependencies]
python = "3.10.*"
urllib3 = ">= 1.25.3"
python-dateutil = ">=2.8.2"
pydantic = ">=2.10.4"
typing-extensions = ">=4.6.0"
pandas = ">=2"
jupyter = "^1.1.1"
requests_oauth2client = ">=1.6.0"
[tool.poetry.dev-dependencies]
pytest = ">=7.2.1"
tox = ">=3.9.0"
flake8 = ">=4.0.0"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.pylint.'MESSAGES CONTROL']
extension-pkg-whitelist = "pydantic"
|