-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
executable file
·48 lines (44 loc) · 1.36 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "PanelSearch"
authors = [
{name = "Tom"},
{name = "Isabel"},
{name = "Egle"},
{name = "Jess"},
]
description = "A tool to manage gene panels for NHS National Genomic Testing Directory tests in the laboratory."
readme = "README.md"
requires-python = ">=3.1.2"
keywords = ["PanelApp", "VariantValidator", "Search", "Genomics", "Test", "Panel"]
license = {text = "BSD-3-Clause"}
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
]
dependencies = [
"requests",
'importlib-metadata; python_version<"3.8"',
"pandas==2.1.2",
"pytest==7.4.3",
"openpyxl==3.1.2",
"sphinx==7.2.6",
"sphinx-rtd-theme==1.3.0",
"myst-parser==2.0.0",
"sqlalchemy==2.0.23",
"pymysql==1.1.0",
"cryptography==41.0.7",
]
dynamic = ["version"]
[project.optional-dependencies]
pdf = ["ReportLab>=1.2", "RXP"]
rest = ["docutils>=0.3", "pack ==1.1, ==1.3"]
[project.urls]
Homepage = "https://github.com/isabelrem/2023-Software-Development-Assessment/"
Documentation = "https://manchester.readthedocs.io/en/dev/"
Repository = "https://github.com/isabelrem/2023-Software-Development-Assessment"
Issues = "https://github.com/isabelrem/2023-Software-Development-Assessment/issues"
[tool.setuptools]
packages = ["PanelSearch"]