-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
87 lines (72 loc) · 2.17 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
83
84
85
86
87
# pyproject.toml
[build-system]
requires = ["setuptools>=65.6.3", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pyphetools"
requires-python = ">=3.8"
description = "Generate and work with GA4GH phenopackets"
readme = "README.md"
authors = [
{name = "Peter Robinson", email="[email protected]"},
{name = "Daniel Danis", email="[email protected]"},
]
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
keywords = [
"Global Alliance for Genomics and Health",
"GA4GH Phenopacket Schema",
"Human Phenotype Ontology",
"GA4GH",
"HPO"]
# version in __init__
dynamic = ["version"]
dependencies = [
"hpo-toolkit>=0.5.0,<0.6.0",
"matplotlib>=3.2.0,<4.0",
"pandas[excel]>=2.0.0,<3.0.0", # We want to parse Excel files.
"phenopackets>=2.0.2",
"protobuf>=3.15.0,<4.0.0",
"requests>=2.25.0,<3.0",
"fasthpocr>=0.1.0"
]
[project.optional-dependencies]
test = ["pytest>=7.0.0,<8.0.0"]
docs = [
'mkdocs-material[imaging]>=9.5.10,<10',
'mkdocs-material-extensions>=1.3,<2.0',
'mkdocstrings[python]>=0.22,<1.0',
'pillow',
'cairosvg',
]
[project.urls]
homepage = "https://github.com/monarch-initiative/pyphetools"
repository = "https://github.com/monarch-initiative/pyphetools.git"
documentation = "https://github.com/monarch-initiative/pyphetools"
bugtracker = "https://github.com/monarch-initiative/pyphetools/issues"
[tool.setuptools]
package-dir = { "" = "src" }
zip-safe = false
[tool.setuptools.dynamic]
version = { attr = "pyphetools.__version__" }
# See MANIFEST.in for the list of the data files
# being included in the package.
[tool.yapf]
blank_line_before_nested_class_or_def = true
column_limit = 88
[tool.pylint]
max-line-length = 88
disable = [
"C0103", # (invalid-name)
"C0114", # (missing-module-docstring)
"C0115", # (missing-class-docstring)
"C0116", # (missing-function-docstring)
"R0903", # (too-few-public-methods)
"R0913", # (too-many-arguments)
"W0105", # (pointless-string-statement)
]