great-ai/pyproject.toml
Andras Schmelczer c55eba2077
All checks were successful
Publish documentation / publish (push) Successful in 51s
Check / Test on Python 3.10 (push) Successful in 1m1s
Check / Lint, format & type checks (push) Successful in 1m9s
Check / Test on Python 3.11 (push) Successful in 51s
Check / Test on Python 3.12 (push) Successful in 58s
Check / Test on Python 3.13 (push) Successful in 55s
Add max deps and bump old ones
2026-06-06 22:29:16 +01:00

85 lines
2.6 KiB
TOML

[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.module]
name = "great_ai" # Module's import name/local folder name
[project]
name = "great-ai" # PyPI package name
dynamic = ["version", "description"]
readme = "README.md"
authors = [{ name = "András Schmelczer", email = "andras@schmelczer.dev" }]
license = { file = "LICENSE" }
classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Natural Language :: English",
]
keywords = ["SE4ML", "MLOps", "AI engineering", "general", "robust", "end-to-end", "automated", "trustworthy", "ai", "deployment"]
requires-python = ">= 3.10"
dependencies = [
"scikit-learn >= 1.3, < 2",
"matplotlib >= 3.7, < 4",
"numpy >= 1.24, < 3",
"nbconvert >= 7.0, < 8",
"ipython >= 8.0, < 10",
"unidecode >= 1.3.0, < 2",
"syntok >= 1.4.0, < 2",
"langcodes[data] >= 3.3.0, < 4",
"langdetect >= 1.0.9, < 2",
"tinydb >= 4.7.0, < 5",
"boto3 >= 1.34, < 2",
"plotly >= 5.20, < 7",
"pandas >= 2.0, < 4",
"dash >= 2.16, < 5",
"fastapi >= 0.110, < 1",
"uvicorn[standard] >= 0.27, < 1",
"a2wsgi >= 1.9, < 2",
"watchdog >= 3.0, < 7",
"typeguard >= 4.0, < 5",
"pydantic >= 2.5, < 3",
"pymongo >= 4.6, < 5",
"dill >= 0.3.6, < 1",
"tqdm >= 4.64, < 5",
"httpx >= 0.24, < 1",
]
[project.optional-dependencies]
dev = [
"flit >= 3.9, < 4",
"mkdocs >= 1.5, < 2",
"mkdocstrings[python] >= 0.24, < 1",
"mkdocs-material >= 9.5, < 10",
"mkdocs-jupyter >= 0.24, < 1",
"mkdocs-git-revision-date-localized-plugin >= 1.2, < 2",
"autoflake >= 2.0, < 3",
"isort >= 5.12, < 7",
"black[jupyter] >= 25.1, < 26",
"mypy >= 1.8, < 2",
"flake8 >= 7.0, < 8",
"tox >= 4.0, < 5",
"pytest >= 7.4, < 9",
"pytest-cov >= 4.1, < 8",
"pytest-asyncio >= 0.23, < 2",
]
[tool.pytest.ini_options]
# `...` in doctests (e.g. third-party exception messages that drift between
# dependency versions) is treated as a wildcard rather than a literal.
doctest_optionflags = ["ELLIPSIS"]
[project.urls]
Documentation = "https://great-ai.scoutinscience.com"
GitHub = "https://github.com/schmelczer/great-ai"
DockerHub = "https://hub.docker.com/repository/docker/schmelczera/great-ai"
[project.scripts]
great_ai = "great_ai.__main__:main"
great-ai = "great_ai.__main__:main"
large_file = "great_ai.large_file.__main__:main"
large-file = "great_ai.large_file.__main__:main"