Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
25 changes: 25 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
[project]
name = "vcflib"
version = "1.0.0"
description = "An open-source Python library for VCF parsing and manipulation"
authors = [
{name = "Sentieon",email = "support@sentieon.com"}
]
readme = "README.md"
requires-python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, >=3.6"
include = ["LICENSE"]

classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 2.7",
]

[project.urls]
Homepage = "https://github.com/Sentieon/vcflib"
Source = "https://github.com/Sentieon/vcflib"

[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
2 changes: 1 addition & 1 deletion vcflib/bgzf.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2014-2024 Sentieon Inc. All rights reserved
# Copyright (c) 2014-2025 Sentieon Inc. All rights reserved
import io
import struct
import zlib
Expand Down
2 changes: 1 addition & 1 deletion vcflib/compat.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2014-2024 Sentieon Inc. All rights reserved
# Copyright (c) 2014-2025 Sentieon Inc. All rights reserved
import sys

if sys.version_info[0] == 2:
Expand Down
2 changes: 1 addition & 1 deletion vcflib/sharder.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2014-2024 Sentieon Inc. All rights reserved
# Copyright (c) 2014-2025 Sentieon Inc. All rights reserved
from abc import ABCMeta, abstractmethod
import copy
import heapq
Expand Down
2 changes: 1 addition & 1 deletion vcflib/tabix.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2014-2024 Sentieon Inc. All rights reserved
# Copyright (c) 2014-2025 Sentieon Inc. All rights reserved
import collections
import os
import struct
Expand Down
2 changes: 1 addition & 1 deletion vcflib/tribble.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2014-2024 Sentieon Inc. All rights reserved
# Copyright (c) 2014-2025 Sentieon Inc. All rights reserved
import bisect
import collections
import heapq
Expand Down
2 changes: 1 addition & 1 deletion vcflib/vcf.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2014-2024 Sentieon Inc. All rights reserved
# Copyright (c) 2014-2025 Sentieon Inc. All rights reserved
import collections
import fnmatch
import io
Expand Down