-
Notifications
You must be signed in to change notification settings - Fork 0
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 #2 from TalusBio/first-release
First release
- Loading branch information
Showing
9 changed files
with
78 additions
and
59 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
repos: | ||
- repo: https://github.com/psf/black | ||
rev: 22.3.0 # Replace by any tag/version: https://github.com/psf/black/tags | ||
rev: 22.10.0 # Replace by any tag/version: https://github.com/psf/black/tags | ||
hooks: | ||
- id: black | ||
language_version: python3 # Should be a command that runs python3.6+ |
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,4 +1,7 @@ | ||
# Changelog for vizta | ||
|
||
## [Unreleased] | ||
|
||
## [unreleased] | ||
|
||
## [0.0.1] 2022-11-08 | ||
### Added | ||
- The first release! :tada: |
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,3 +1,5 @@ | ||
# vizta | ||
|
||
Talus themes for data visualization in Python. | ||
|
||
See the documentation at https://TalusBio.github.io/vizta |
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,6 @@ | ||
# Only allow commits that increase or maintain test coverage. | ||
coverage: | ||
status: | ||
project: | ||
default: | ||
target: auto # auto compares coverage to the previous base commit |
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,7 +1,54 @@ | ||
[build-system] | ||
requires = ["setuptools>=42", "wheel", "setuptools_scm[toml]>=3.4"] | ||
requires = ["setuptools>=61", "wheel", "setuptools_scm[toml]>=3.4"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "vizta" | ||
authors = [{name = "William E. Fondrie", email = "[email protected]"}] | ||
description = "Fast and flexible semi-supervised learning for peptide detection" | ||
license = {text = "Apache 2.0"} | ||
classifiers = [ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Operating System :: OS Independent", | ||
"Topic :: Scientific/Engineering :: Bio-Informatics", | ||
] | ||
requires-python = ">=3.6" | ||
dependencies = [ | ||
"matplotlib>=3.5.1", | ||
"seaborn>=0.11.2", | ||
] | ||
dynamic = ["version"] | ||
|
||
[project.readme] | ||
file = "README.md" | ||
content-type = "text/markdown" | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/TalusBio/vizta" | ||
Documentation = "https://TalusBio.github.io/vizta" | ||
"Bug Tracker" = "https://github.com/TalusBio/vizta/issues" | ||
"Discussion Board" = "https://github.com/TalusBio/vizta/discussions" | ||
|
||
[project.optional-dependencies] | ||
docs = [ | ||
"mkdocs>=1.3.0", | ||
"mkdocstrings>=0.18.1", | ||
"mkdocs-material>=8.2.1", | ||
"mkdocs-jupyter>=0.20.1", | ||
"ipykernel>=6.12.1", | ||
] | ||
dev = [ | ||
"pre-commit>=2.7.1", | ||
"black>=19.10b0", | ||
] | ||
|
||
[tool.setuptools] | ||
include-package-data = false | ||
|
||
[tool.setuptools.packages] | ||
find = {namespaces = false} | ||
|
||
[tool.setuptools_scm] | ||
|
||
[tool.black] | ||
|