-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #215 from qiyunzhu/toml
Upgrading Python packaging mechanism
- Loading branch information
Showing
13 changed files
with
83 additions
and
83 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
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 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 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 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,7 @@ | ||
name: woltka | ||
channels: | ||
- conda-forge | ||
dependencies: | ||
- python >=3.6 | ||
- numba | ||
- biom-format |
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,52 @@ | ||
[build-system] | ||
requires = ["hatchling"] | ||
build-backend = "hatchling.build" | ||
|
||
[project] | ||
name = "woltka" | ||
dynamic = ["version"] | ||
dependencies = [ | ||
"numba", | ||
"biom-format", | ||
] | ||
requires-python = ">=3.6" | ||
authors = [ | ||
{name = "Qiyun Zhu", email = "qiyunzhu@gmail.com"} | ||
] | ||
maintainers = [ | ||
{name = "Qiyun Zhu", email = "qiyunzhu@gmail.com"} | ||
] | ||
description = "versatile meta-omic data classifier" | ||
readme = "README.md" | ||
license = {file = "LICENSE"} | ||
keywords = ["bioinformatics", "metagenomics", "microbiome"] | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"License :: OSI Approved :: BSD License", | ||
"Topic :: Scientific/Engineering", | ||
"Topic :: Scientific/Engineering :: Bio-Informatics", | ||
"Intended Audience :: Science/Research", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3 :: Only", | ||
"Operating System :: OS Independent", | ||
"Operating System :: POSIX :: Linux", | ||
"Operating System :: MacOS :: MacOS X", | ||
"Operating System :: Microsoft :: Windows", | ||
] | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/qiyunzhu/woltka" | ||
Documentation = "https://github.com/qiyunzhu/woltka/blob/main/README.md" | ||
Repository = "https://github.com/qiyunzhu/woltka.git" | ||
Issues = "https://github.com/qiyunzhu/woltka/issues" | ||
Changelog = "https://github.com/qiyunzhu/woltka/blob/main/CHANGELOG.md" | ||
|
||
[project.scripts] | ||
woltka = "woltka.cli:cli" | ||
|
||
[project.entry-points."qiime2.plugins"] | ||
q2-woltka = "woltka.q2.plugin_setup:plugin" | ||
|
||
[tool.hatch.version] | ||
path = "woltka/__init__.py" |
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 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 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 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