vcell / data /docker /swarm /vcell-admin /pyproject.toml
introvoyz041's picture
Migrated from GitHub
9d54b72 verified
[tool.poetry]
name = "vcell-admin"
version = "0.1.0"
description = "Administrative CLI for Docker Swarm deployment of VCell"
authors = ["Virtual Cell"]
license = "MIT"
repository = "https://github.com/virtualcell/vcell"
keywords = ["CLI"]
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Topic :: Scientific/Engineering :: Bio-Informatics',
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3 :: Only",
]
[tool.poetry.scripts]
vcelladmin = "vcell_admin.cli:main"
[tool.poetry.dependencies]
python = ">=3.7,<4.0"
pymongo = "<4.0"
paramiko = "^2.11.0"
requests = "^2.31"
tabulate = ">=0.8.0"
typer = "^0.6.1"
[tool.poetry.dev-dependencies]
pytest = "^7.2.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"