-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (59 loc) · 1.59 KB
/
pyproject.toml
File metadata and controls
65 lines (59 loc) · 1.59 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
# pyproject.toml
[build-system]
requires = ["setuptools>=61.2.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "labmateai"
version = "2.0.5"
authors = [
{ name = "Terry Noblin", email = "tnoblin@health.ucsd.edu" }
]
description = "An AI-powered recommendation system for laboratory tools and software."
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.12"
keywords = ["AI", "Recommendation System", "Laboratory Tools", "Scientific Software", "Bioinformatics"]
classifiers = [
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: MIT License"
]
dependencies = [
"networkx==2.8.8",
"numpy>=1.23.5",
"prompt_toolkit>=3.0.0",
"pandas>=1.5.3",
"scikit-learn>=1.1.3",
"matplotlib>=3.6.2",
"flask>=2.2.2",
"requests>=2.28.1",
"scipy>=1.9.3",
"jinja2>=3.1.2",
"gunicorn>=20.1.0",
"psycopg2-binary>=2.9.0",
"python-dotenv>=0.19.1",
"sqlalchemy>=1.4.31",
"alembic>=1.7.4"
]
[project.urls]
"Bug Reports" = "https://github.com/RLTree/LabMateAI/issues"
"Source" = "https://github.com/RLTree/LabMateAI"
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-cov>=4.0.0",
"pytest-xdist>=2.4.0",
"pytest-asyncio>=0.20.3",
"pytest-mock>=3.11.1",
"unittest-xml-reporting>=3.0.4",
"flake8>=6.1.0",
"mock>=4.0.3"
]
docs = [
"sphinx>=4.0.0",
"furo>=2021.8.14",
]
[project.scripts]
labmateai = "labmateai.cli:main"