-
Notifications
You must be signed in to change notification settings - Fork 6
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 #82 from Clinical-Genomics/depend_setuptools
Fix #81 - setuptools not explicit in all distros - switch to uv
- Loading branch information
Showing
12 changed files
with
634 additions
and
226 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
3.13 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
[project] | ||
name = "stranger" | ||
version = "0.9.2" | ||
description = "Annotate VCF files with STR variants with pathogenicity implications" | ||
authors = [{name="Daniel Nilsson", email="[email protected]"}, {name="Mans Magnuson", email="[email protected]"}] | ||
license = {text = "MIT License"} | ||
readme = "README.md" | ||
include = [ | ||
"README.md", | ||
"stranger/**/*", | ||
"tests/**/*" | ||
] | ||
requires-python = ">=3.7" | ||
keywords = ["vcf", "variants", "str"] | ||
classifiers = [ | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
"Development Status :: 5 - Production/Stable", | ||
"Programming Language :: Python :: Implementation :: CPython", | ||
"Operating System :: MacOS :: MacOS X", | ||
"Operating System :: Unix", | ||
"Intended Audience :: Science/Research", | ||
"Topic :: Scientific/Engineering :: Bio-Informatics", | ||
"Topic :: Scientific/Engineering :: Medical Science Apps.", | ||
] | ||
dependencies = [ | ||
"click", | ||
"coloredlogs", | ||
"importlib-resources>=5.12.0", | ||
"PyYAML", | ||
] | ||
|
||
[project.urls] | ||
Repository = "https://github.com/Clinical-Genomics/stranger" | ||
Changelog = "https://github.com/Clinical-Genomics/stranger/blob/main/CHANGELOG.md" | ||
"Bug Tracker" = "https://github.com/Clinical-Genomics/stranger/issues" | ||
|
||
|
||
[project.scripts] | ||
stranger = "stranger.cli:cli" | ||
|
||
[build-system] | ||
requires = ["hatchling"] | ||
build-backend = "hatchling.build" | ||
|
||
[tool.black] | ||
line-length = 100 | ||
target-version = ['py313'] | ||
|
||
[tool.ruff] | ||
src = ["stranger", "tests", "scripts"] | ||
line-length = 100 | ||
|
||
[tool.isort] | ||
profile = "black" | ||
|
||
[dependency-groups] | ||
dev = [ | ||
"pytest-cov>=4.1.0", | ||
"pytest>=7.4.4", | ||
] | ||
lint = [ | ||
"black>=23.3.0", | ||
"isort>=5.11.5", | ||
"ruff>=0.8.0", | ||
] |
Oops, something went wrong.