-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Transition from setup.py & friends to pyproject.toml
- Loading branch information
Showing
13 changed files
with
122 additions
and
2,446 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,12 @@ | ||
# Changes here will be overwritten by Copier; NEVER EDIT MANUALLY | ||
_commit: dfb0404 | ||
_src_path: https://github.com/qiime2/q2-setup-template.git | ||
module_name: quality_control | ||
plugin_name: q2_quality_control | ||
plugin_scripts: q2_quality_control/decontam_assets/run_decontam.R | ||
project_author_email: [email protected], [email protected] | ||
project_author_name: Nicholas Bokulich and Jorden Rabasco | ||
project_description: Quality control methods for feature and sequence data. | ||
project_name: q2-quality-control | ||
project_urls_homepage: https://github.com/qiime2/q2-quality-control | ||
project_urls_repository: https://github.com/qiime2/q2-quality-control |
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 |
---|---|---|
@@ -1 +1 @@ | ||
q2_quality_control/_version.py export-subst | ||
pyproject.toml export-subst |
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
This file was deleted.
Oops, something went wrong.
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
This file was deleted.
Oops, something went wrong.
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,49 @@ | ||
package: | ||
name: q2-quality-control | ||
version: {{ PLUGIN_VERSION }} | ||
source: | ||
path: .. | ||
build: | ||
script: make install | ||
requirements: | ||
host: | ||
- python {{ python }} | ||
- setuptools | ||
- versioningit | ||
- wheel | ||
run: | ||
- python {{ python }} | ||
- pandas {{ pandas }} | ||
- seaborn | ||
- blast >=2.6.0 | ||
- bioconductor-decontam | ||
- r-base {{ r_base }} | ||
- r-optparse >=1.7.1 | ||
- vsearch | ||
- samtools >=1.15 | ||
- bowtie2 | ||
- qiime2 {{ qiime2_epoch }}.* | ||
- q2-types {{ qiime2_epoch }}.* | ||
- q2templates {{ qiime2_epoch }}.* | ||
- q2-taxa {{ qiime2_epoch }}.* | ||
- q2-feature-table {{ qiime2_epoch }}.* | ||
- biom-format {{ biom_format }} | ||
build: | ||
- setuptools | ||
- versioningit | ||
test: | ||
commands: | ||
- py.test --pyargs q2_quality_control | ||
requires: | ||
- qiime2 >={{ qiime2 }} | ||
- q2-types >={{ q2_types }} | ||
- q2templates >={{ q2templates }} | ||
- q2-taxa >={{ q2_taxa }} | ||
- pytest | ||
imports: | ||
- q2_quality_control | ||
- qiime2.plugins.quality_control | ||
about: | ||
home: https://qiime2.org | ||
license: BSD-3-Clause | ||
license_family: BSD |
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,53 @@ | ||
[project] | ||
name = "q2-quality-control" | ||
authors = [ | ||
{ name = "Nicholas Bokulich and Jorden Rabasco", email = "[email protected], [email protected]" } | ||
] | ||
description = "Quality control methods for feature and sequence data." | ||
readme = {file = "README.md", content-type = "text/markdown"} | ||
license = {file = "LICENSE"} | ||
dynamic = ["version"] | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/qiime2/q2-quality-control" | ||
Repository = "https://github.com/qiime2/q2-quality-control" | ||
|
||
[project.entry-points.'qiime2.plugins'] | ||
"q2-quality-control" = "q2_quality_control.plugin_setup:plugin" | ||
|
||
[build-system] | ||
requires = [ | ||
"setuptools", | ||
"versioningit", | ||
"wheel" | ||
] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[tool.versioningit.vcs] | ||
method = "git-archive" | ||
describe-subst = "$Format:%(describe)$" | ||
default-tag = "0.0.1" | ||
|
||
[tool.versioningit.next-version] | ||
method = "minor" | ||
|
||
[tool.versioningit.format] | ||
distance = "{base_version}+{distance}.{vcs}{rev}" | ||
dirty = "{base_version}+{distance}.{vcs}{rev}.dirty" | ||
distance-dirty = "{base_version}+{distance}.{vcs}{rev}.dirty" | ||
|
||
[tool.versioningit.write] | ||
file = "q2-quality-control/_version.py" | ||
|
||
[tool.setuptools] | ||
include-package-data = true | ||
script-files = [ | ||
"q2_quality_control/decontam_assets/run_decontam.R" | ||
] | ||
|
||
[tool.setuptools.packages.find] | ||
where = ["."] | ||
include = ["q2_quality_control*"] | ||
|
||
[tool.setuptools.package-data] | ||
q2_quality_control = ["**/*"] |
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
Oops, something went wrong.