-
Notifications
You must be signed in to change notification settings - Fork 24
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
2 changed files
with
62 additions
and
38 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 |
---|---|---|
@@ -0,0 +1,62 @@ | ||
[build-system] | ||
requires = ["setuptools>=61.0"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "relecov-tools" | ||
version = "1.3.0" | ||
description = "Tools for managing and proccessing relecov network data." | ||
readme = "README.md" | ||
requires-python = ">=3.7" | ||
authors = [ | ||
{name = "Sara Monzon", email = "[email protected]"}, | ||
{name = "Luis Chapado", email = "[email protected]"}, | ||
{name = "Isabel Cuesta", email = "[email protected]"}, | ||
{name = "Sarai Varona", email = "[email protected]"}, | ||
{name = "Daniel Valle", email = "[email protected]"}, | ||
{name = "Pablo Mata", email = "[email protected]"}, | ||
{name = "Victor Lopez", email = "[email protected]"}, | ||
{name = "Emi Arjona", email = "[email protected]"}, | ||
{name = "Jaime Ozaez", email = "[email protected]"}, | ||
{name = "Juan Ledesma", email = "[email protected]"}, | ||
{name = "Sergio Olmos", email = "[email protected]"}, | ||
{name = "Alejandro Bernabeu", email = "[email protected]"}, | ||
{name = "Alba Talavera", email = "[email protected]"} | ||
] | ||
maintainers = [ | ||
{name = "Sara Monzon", email = "[email protected]"}, | ||
{name = "Luis Chapado", email = "[email protected]"}, | ||
{name = "Isabel Cuesta", email = "[email protected]"}, | ||
{name = "Sarai Varona", email = "[email protected]"}, | ||
{name = "Daniel Valle", email = "[email protected]"}, | ||
{name = "Pablo Mata", email = "[email protected]"}, | ||
{name = "Victor Lopez", email = "[email protected]"}, | ||
{name = "Emi Arjona", email = "[email protected]"}, | ||
{name = "Jaime Ozaez", email = "[email protected]"}, | ||
{name = "Juan Ledesma", email = "[email protected]"}, | ||
{name = "Sergio Olmos", email = "[email protected]"}, | ||
{name = "Alejandro Bernabeu", email = "[email protected]"}, | ||
{name = "Alba Talavera", email = "[email protected]"} | ||
] | ||
keywords = [ | ||
"relecov", | ||
"bioinformatics", | ||
"pipeline", | ||
"sequencing", | ||
"NGS", | ||
"next generation sequencing" | ||
] | ||
license = {text = "GNU GENERAL PUBLIC LICENSE v.3"} | ||
dynamic = ["dependencies"] | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/BU-ISCIII/relecov-tools" | ||
|
||
[tool.setuptools.dynamic] | ||
dependencies = {file = ["requirements.txt"]} | ||
|
||
[tool.setuptools.packages.find] | ||
exclude = ["docs"] | ||
|
||
[project.scripts] | ||
relecov-tools = "relecov_tools.__main__:run_relecov_tools" |