-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
83 lines (70 loc) · 1.69 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# pyproject.toml
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "phippery"
version = "1.3.1"
description = "Tools for analyzing PhIP-Seq Data."
readme = "README.md"
authors = [
{ name = "Jared Galloway", email= "jgallowa@fredhutch.org" },
{ name = "Kevin Sung", email = "ksung@fredhutch.org" }
]
license = { file = "LICENSE.txt" }
classifiers = [
"License :: OSI Approved :: GNU Affero General Public License v3",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["phippery", "phipseq", "phage", "modeling", "phip"]
dependencies = [
"click",
"numpy",
"pandas",
"scipy>=1.7.1",
"xarray>=0.19.0",
"statsmodels",
"POT",
"biopython"
]
requires-python = ">=3.7"
[project.optional-dependencies]
dev = [
"setuptools>=58.0",
"packaging>=21.0",
"pytest",
"pytest-pep8",
"pytest-datadir",
"pre-commit",
"black",
"sphinx",
"sphinx_rtd_theme",
"sphinx-click",
"bumpver"
]
[tool.poetry]
readme = "README.md"
[project.urls]
documentation = "https://matsengrp.github.io/phippery/"
repository = "https://github.com/matsengrp/phippery"
[tool.setuptools]
packages = ["phippery"]
[project.scripts]
phippery = "phippery.cli:cli"
[tool.bumpver]
current_version = "1.3.1"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "bump version {old_version} -> {new_version}"
commit = true
tag = true
push = false
[tool.bumpver.file_patterns]
"pyproject.toml" = [
'current_version = "{version}"', 'version = "{version}"'
]
"phippery/__init__.py" = ["{version}"]
"Dockerfile" = ["{version}"]
#"README.md" = [
# "{version}",
#]