-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
92 lines (84 loc) · 2.27 KB
/
pyproject.toml
File metadata and controls
92 lines (84 loc) · 2.27 KB
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
88
89
90
91
92
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "dnastack-client-library"
version = "3.1.0a0"
description = "DNAstack's GA4GH library and CLI"
authors = [
{name = "DNAstack", email = "devs@dnastack.com"}
]
readme = {text = "GA4GH API client and command line tool. Please check out [the documentation](https://docs.omics.ai/products/analysis/python-library) for more details.", content-type = "text/markdown"}
license = {text = "Apache License, Version 2.0"}
requires-python = ">=3.11"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"click>=8.0.3,<8.2",
"pydantic>=2.0",
"pyjwt>=2.1.0,<3",
"pyyaml>=5.4.1",
"requests>=2.23.0,<3",
"urllib3>=1.25.11,<2",
"kotoba",
"imagination>=3.3.1",
"requests-toolbelt>=0.9.1,<1",
"httpie>=3.2.1",
"beautifulsoup4>=4.10.0",
"flask~=2.1",
"google-cloud-secret-manager",
"google-crc32c",
"pandas",
"python-dotenv",
"pip>=21.3.1",
"packaging>=21.3",
"selenium>=4.1.0",
"boto3>=1.42.30",
]
[project.urls]
Homepage = "https://www.dnastack.com"
Documentation = "https://docs.omics.ai/products/analysis/python-library"
Repository = "https://github.com/DNAstack/dnastack-client"
[project.scripts]
dnastack = "dnastack.__main__:dnastack"
omics = "dnastack.omics_cli:omics"
[project.optional-dependencies]
test = [
"selenium>=3.141.0",
"pyjwt>=2.1.0",
"jsonpath-ng>=1.5.3",
]
[tool.setuptools.packages.find]
include = ["dnastack*"]
exclude = ["tests*"]
[dependency-groups]
test = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"pytest-xdist>=3.0.0",
"pytest-mock>=3.10.0",
"pytest-sugar>=1.1.1",
"pytest-timeout>=2.1.0",
"pytest-watch>=4.2.0",
"responses>=0.23.0",
"hypothesis>=6.0.0",
"coverage[toml]>=7.0.0",
"assertpy>=1.1",
]
dev = [
{include-group = "test"},
"ruff==0.12.0",
"pre-commit>=4.2.0"
]
[tool.uv]
package = true
[tool.ruff]
target-version = "py311"
line-length = 120