-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
79 lines (70 loc) · 2.1 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[tool.poetry]
name = "tf-notify"
version = "0.3.0"
description = "Want to get notified on the progress of your TensorFlow model training? Enter, a TensorFlow Keras callback to send notifications on the messaging app of your choice."
authors = ["Ilias Antonopoulos <[email protected]>"]
readme = "README.md"
license = "Apache-2.0 license"
homepage = "https://pypi.org/project/tf-notify"
documentation = "https://tf-notify.readthedocs.io"
repository = "https://github.com/ilias-ant/tf-notify"
keywords = ["tensorflow", "keras", "callback", "notifications", "slack", "telegram"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3 :: Only",
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/ilias-ant/tf-notify/issues"
[tool.poetry.dependencies]
python = ">=3.7,<3.11"
notifiers = "~1.3.3"
tensorflow = ">=2.7.3,<=2.9.1"
[tool.poetry.dev-dependencies]
autoflake = "^1.4"
bandit = "^1.7.4"
black = "^22.6.0"
isort = "^5.10.1"
pre-commit = "^2.20.0"
pytest = "^7.1.2"
pytest-cov = "^3.0.0"
responses = "^0.21.0"
mkdocs = "^1.3.1"
mkdocs-material = "^8.3.9"
mkdocstrings = {version = "^0.19.0", extras = ["python"]} # ModuleNotFoundError: No module named 'mkdocstrings.handlers.python'
[tool.black]
line-length = 88
skip-string-normalization = true
target-version = ['py37', 'py38', 'py39', 'py310']
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| \.pytest_cache
| \.test_coverage
| _build
| buck-out
| build
| dist
)/
'''
[tool.isort]
profile = "black"
[tool.bandit]
exclude_dirs = ["tests"]
skips = []
[tool.pytest.ini_options]
filterwarnings = [] # https://docs.pytest.org/en/stable/warnings.html
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"