-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (52 loc) · 1.73 KB
/
Copy pathpyproject.toml
File metadata and controls
58 lines (52 loc) · 1.73 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
[project]
name = "genetic-health-analyzer"
version = "1.0.0"
description = "Privacy-first, local-only exploration of consumer genome files (23andMe, AncestryDNA, etc.)"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [{ name = "Dimas Mendes" }]
keywords = ["genetics", "bioinformatics", "23andme", "clinvar", "pharmgkb", "privacy", "local-first"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Flask",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Natural Language :: Portuguese (Brazilian)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
dependencies = [
"flask==3.1.3",
"tqdm==4.68.3",
"requests==2.34.2",
]
[project.optional-dependencies]
translation = ["argostranslate==1.9.6"]
local-ai = ["ollama==0.3.3"]
dev = ["pytest>=8.0", "flake8>=7.0"]
[project.urls]
Homepage = "https://github.com/dimas-amendes/gene-lens"
Issues = "https://github.com/dimas-amendes/gene-lens/issues"
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
py-modules = ["dashboard", "main", "config", "run", "download_databases"]
[tool.setuptools.packages.find]
include = ["src*"]
[tool.pytest.ini_options]
minversion = "8.0"
testpaths = ["tests"]
addopts = "-ra --strict-markers --tb=short"
filterwarnings = [
"error",
"ignore::DeprecationWarning:flask.*",
"ignore::DeprecationWarning:werkzeug.*",
]