Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #81 - setuptools not explicit in all distros - switch to uv #82

Merged
merged 21 commits into from
Nov 25, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [unreleased]
### Fixed
- Switch build system to uv-hatchling

## [0.9.2]
### Fixed
- Use codecov badge and fix scout link on README page
Expand Down
51 changes: 51 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
[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 = "MIT"
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",
"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.optional-dependencies]
test = ["pytest","pytest-cov"]

[project.scripts]
loqusdb = "stranger.cli:cli"

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[tool.black]
line-length = 100
target-version = ['py312']
6 changes: 1 addition & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,7 @@
VERSION = None

# What packages are required for this module to be executed?
REQUIRED = [
"click",
"coloredlogs",
"pyyaml",
]
REQUIRED = ["click", "coloredlogs", "pyyaml", "setuptools"]

# What packages are optional?
EXTRAS = {
Expand Down
Loading