-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
51 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,20 +3,48 @@ name = "oneroof" | |
version = "0.1.0" | ||
description = "Base-, Variant-, and Consensus-calling under One Proverbial Roof. Work in progress!" | ||
authors = [ | ||
{ name = "Nicholas R. Minor", email = "[email protected]" }, | ||
{ name = "Andrew J. Lail Minor", email = "[email protected]" }, | ||
{ name = "Nicholas R. Minor", email = "[email protected]" }, | ||
{ name = "Andrew J. Lail", email = "[email protected]" }, | ||
{ name = "Annabelle Kalweit", email = "[email protected]" }, | ||
] | ||
license = "MIT" | ||
requires-python = ">= 3.10" | ||
keywords = [ | ||
"science", | ||
"biology", | ||
"research", | ||
"bioinformatics", | ||
"sequencing", | ||
"genomics", | ||
"virus", | ||
"SARS-CoV-2", | ||
"H5N1", | ||
"influenze", | ||
"haplotyping", | ||
] | ||
classifiers = [ | ||
"Development Status :: 3 - Alpha", | ||
|
||
"Intended Audience :: Science/Research", | ||
"Topic :: Scientific/Engineering :: Bio-Informatics", | ||
|
||
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)", | ||
|
||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
] | ||
dependencies = [ | ||
"polars-lts-cpu", | ||
"xlsxwriter", | ||
"xlsx2csv", | ||
"biopython", | ||
"pysam", | ||
"marimo", | ||
"numpy", | ||
"scipy", | ||
"paramiko", | ||
"polars-lts-cpu", | ||
"xlsxwriter", | ||
"xlsx2csv", | ||
"biopython", | ||
"pysam", | ||
"marimo", | ||
"numpy", | ||
"scipy", | ||
"paramiko", | ||
] | ||
|
||
[build-system] | ||
|
@@ -63,18 +91,18 @@ cffi = ">=1.15.0,<1.17.0" | |
|
||
[tool.uv] | ||
dev-dependencies = [ | ||
"ipykernel>=6.29.5", | ||
"ipython>=8.12.3", | ||
"jupyter>=0.6.4", | ||
"just>=0.8.162", | ||
"mamba>=0.11.3", | ||
"marimo[sql]>=0.8.14", | ||
"pip>=24.2", | ||
"pre-commit>=3.8.0", | ||
"pytest>=8.3.3", | ||
"quarto>=0.1.0", | ||
"ruff>=0.6.4", | ||
"tox>=4.18.1", | ||
"ipykernel>=6.29.5", | ||
"ipython>=8.12.3", | ||
"jupyter>=0.6.4", | ||
"just>=0.8.162", | ||
"mamba>=0.11.3", | ||
"marimo[sql]>=0.8.14", | ||
"pip>=24.2", | ||
"pre-commit>=3.8.0", | ||
"pytest>=8.3.3", | ||
"quarto>=0.1.0", | ||
"ruff>=0.6.4", | ||
"tox>=4.18.1", | ||
] | ||
compile-bytecode = true | ||
|
||
|