-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (30 loc) · 818 Bytes
/
pyproject.toml
File metadata and controls
34 lines (30 loc) · 818 Bytes
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "variantgrid_api"
version = "1.2.0"
description = "A Python API client for VariantGrid"
authors = [
{ name = "Dave Lawrence", email = "davmlaw@gmail.com" }
]
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.8"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
dependencies = [
"requests",
"dataclasses-json",
]
[project.optional-dependencies]
test = ["pytest>=8", "pytest-cov>=5", "responses"]
[project.urls]
"Homepage" = "https://github.com/SACGF/variantgrid_api"
[tool.setuptools.packages.find]
where = ["src"]
exclude = ["examples"]