internet_ml/pyproject.toml

168 lines
4.3 KiB
TOML
Raw Permalink Normal View History

2022-12-23 13:40:01 +00:00
# Poetry pyproject.toml: https://python-poetry.org/docs/pyproject/
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
2022-12-28 10:42:39 +00:00
name = "internet-ml"
2023-01-19 12:35:58 +00:00
version = "3.0.0" # fresh start from 3.0.0
2022-12-23 13:40:01 +00:00
description = "Internet-ML: Allowing ML to connect to the internet"
readme = "./.github/README.md"
authors = ["Thamognya Kodi <contact@thamognya.com>"]
license = "AGPL-3.0-or-later"
repository = "https://github.com/thamognya/internet-ml"
homepage = "https://github.com/thamognya/internet-ml"
# Keywords description https://python-poetry.org/docs/pyproject/#keywords
keywords=["Transformer", "NLP", "NLI", "Internet", "Networks", "BERT", "SOTA", "XLNet", "sentence", "embedding", "PyTorch", "NLP", "deep", "learning", "Tensorflow", "Huggingface", "image-gen", "dall-E", "gpt", "stable diffusion"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
]
[tool.poetry.scripts]
# Entry points for the package https://python-poetry.org/docs/pyproject/#scripts
"internet-ml" = "internet_ml.__main__:app"
[tool.poetry.dependencies]
2023-01-18 07:35:30 +00:00
python = "^3.9"
2022-12-23 13:40:01 +00:00
typer = {extras = ["all"], version = "^0.4.0"}
rich = ">=10.14,<14.0"
2022-12-23 13:40:01 +00:00
tokenizers = "^0.13.2"
pandas = "^1.5.2"
numpy = "^1.24.0"
torch = "^1.13.1"
datasets = "^2.8.0"
accelerate = "^0.15.0"
timm = "^0.6.12"
torchvision = "^0.14.1"
torchaudio = "^0.13.1"
2022-12-25 17:15:24 +00:00
python-dotenv = "^0.21.0"
2022-12-26 06:07:39 +00:00
requests = "^2.28.1"
types-requests = "^2.28.11.7"
2022-12-26 15:43:10 +00:00
contractions = "^0.1.73"
urlextract = "^1.8.0"
scikit-learn = "^1.2.0"
spacy = "^3.4.4"
nltk = "^3.8"
beautifulsoup4 = "^4.11.1"
2022-12-28 10:41:27 +00:00
diffusers = "^0.11.1"
2023-01-10 12:50:43 +00:00
openai = "^0.26.0"
2023-01-11 15:59:46 +00:00
huggingface-hub = "^0.11.1"
2023-01-10 12:50:43 +00:00
revchatgpt = "^0.1.1"
2023-01-12 10:41:31 +00:00
cssselect = "^1.2.0"
lxml = "^4.9.2"
2022-12-23 13:40:01 +00:00
[tool.poetry.group.dev.dependencies]
bandit = "^1.7.4"
black = {version = "^23.1a1", allow-prereleases = true}
2022-12-23 13:40:01 +00:00
darglint = "^1.8.1"
isort = {extras = ["colors"], version = "^5.11.4"}
mypy = "^0.991"
2022-12-23 13:40:01 +00:00
mypy-extensions = "^0.4.3"
2023-01-02 01:27:27 +00:00
pre-commit = "^2.21.0"
2023-01-18 14:38:51 +00:00
pydocstyle = "^6.3.0"
pylint = "^2.15.10"
pytest = "^7.2.1"
pyupgrade = "^3.3.1"
safety = "^2.3.5"
2023-01-18 14:38:51 +00:00
coverage = "^7.0.5"
2022-12-23 13:40:01 +00:00
coverage-badge = "^1.1.0"
pytest-html = "^3.2.0"
pytest-cov = "^4.0.0"
2022-12-23 13:40:01 +00:00
mkdocs = "^1.4.2"
[tool.black]
# https://github.com/psf/black
target-version = ["py310"]
line-length = 88
color = true
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| env
| venv
)/
'''
[tool.isort]
# https://github.com/timothycrosley/isort/
py_version = 311
line_length = 88
known_typing = ["typing", "types", "typing_extensions", "mypy", "mypy_extensions"]
sections = ["FUTURE", "TYPING", "STDLIB", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]
include_trailing_comma = true
profile = "black"
multi_line_output = 3
indent = 4
color_output = true
[tool.mypy]
# https://mypy.readthedocs.io/en/latest/config_file.html#using-a-pyproject-toml-file
python_version = 3.11
pretty = true
show_traceback = true
color_output = true
allow_redefinition = false
check_untyped_defs = true
disallow_any_generics = true
disallow_incomplete_defs = true
ignore_missing_imports = true
implicit_reexport = false
no_implicit_optional = true
show_column_numbers = true
show_error_codes = true
show_error_context = true
strict_equality = true
strict_optional = true
warn_no_return = true
warn_redundant_casts = true
warn_return_any = true
warn_unreachable = true
warn_unused_configs = true
warn_unused_ignores = true
[tool.pytest.ini_options]
# https://docs.pytest.org/en/6.2.x/customize.html#pyproject-toml
# Directories that are not visited by pytest collector:
norecursedirs =["hooks", "*.egg", ".eggs", "dist", "build", "docs", ".tox", ".git", "__pycache__"]
doctest_optionflags = ["NUMBER", "NORMALIZE_WHITESPACE", "IGNORE_EXCEPTION_DETAIL"]
# Extra options:
addopts = [
"--strict-markers",
"--tb=short",
"--doctest-modules",
"--doctest-continue-on-failure",
]
[tool.coverage.run]
source = ["tests"]
[coverage.paths]
source = "internet-ml"
[coverage.run]
branch = true
[coverage.report]
fail_under = 50
show_missing = true