From 092284c7ca7c5e22380986b05662838c432804be Mon Sep 17 00:00:00 2001 From: Neville Yee Date: Mon, 10 Jun 2024 15:10:09 +0000 Subject: [PATCH] Updated dependencies list in pyproject.toml. --- pyproject.toml | 123 +++++++------------------------------------------ 1 file changed, 17 insertions(+), 106 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index f8c4c39..98f967b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,108 +1,19 @@ -# -# Build system requirements -# -[build-system] - -requires = ["setuptools", "setuptools-scm", "wheel"] -build-backend = "setuptools.build_meta" - -# -# -# Basic project metadata -# -[project] - -name = "template" - -description = "A Python project template" - +[tool.poetry] +name = "creeper" +version = "0.1.0" +description = "" +authors = ["Neville Yee "] +license = "Apache V2" readme = "README.md" -requires-python = ">=3.6" - -license = {file = "LICENSE"} - -keywords = [ - "template", - "python", - "project" -] - -authors = [ - {name = "Aaron A. Aaronson", email = "aaron.aaronson@example.com" } -] - -classifiers = [ - "Development Status :: 3 - Alpha", - "License :: OSI Approved :: MIT License", - "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.11", -] - -dependencies = [ - "numpy" -] - -dynamic = [ - "version" -] - -# -# Project urls -# -[project.urls] - -"Source" = "https://github.com/rosalindfranklininstitute/python-template" -"Tracker" = "https://github.com/rosalindfranklininstitute/python-template/issues" - -# -# Project additional optional dependencies -# -[project.optional-dependencies] - -test = [ - "pytest", - "pytest-cov", -] - -# -# Project command line scripts -# -[project.scripts] - -python-template = "template.command_line:main" - -# -# Configure setup tools -# -[tool.setuptools.packages.find] - -where = ["src"] - -# -# Set the package version from git tag -# -[tool.setuptools.dynamic] - -version = {attr = "template._version.__version__"} - -# -# Configure setuptools-scm to generate version file -# -[tool.setuptools_scm] - -write_to = "src/template/_version.py" - -# -# Configure pytest -# -[tool.pytest.ini_options] - -addopts = "--cov=src --cov-report term --cov-report html" - -testpaths = [ "tests" ] +[tool.poetry.dependencies] +python = ">=3.9, <3.12" +numpy = "^1.26.0" +tqdm = "*" +jupyterlab = "*" +matplotlib = "*" +scikit-learn = "*" + +# [build-system] +# requires = ["poetry-core"] +# build-backend = "poetry.core.masonry.api"