generated from fastai/nbdev_template
-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
pyproject.toml
69 lines (63 loc) · 1.7 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
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
module = "chitra"
author = "Aniket Maurya"
author-email = "[email protected]"
home-page = "https://github.com/aniketmaurya/chitra"
classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development",
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Information Technology",
"Operating System :: OS Independent",
"Typing :: Typed",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
requires = [
"matplotlib",
"pillow",
"imgaug >=0.4.0",
"typeguard",
"typer",
]
description-file = "README.md"
requires-python = ">=3.7"
[tool.flit.metadata.urls]
Documentation = "https://chitra.readthedocs.io/en/latest"
[tool.flit.metadata.requires-extra]
nn = [
"scikit-learn",
"tensorflow >= 2.3",
"tensorflow-addons >=0.13.0",
"tf-keras-vis >=0.5.3",
"pytorch-lightning",
"timm",
]
serve = [
"fastapi", "uvicorn", "pydantic", "python-multipart",
"gradio ==2.2.2",
"tensorflow-serving-api",
"chalice", "smart_open[all]",
]
test = [
"pytest",
"pytest-asyncio",
"coverage",
]
[tool.isort]
profile = "black"
[tool.black]
line_length = 120
[tool.flit.scripts]
chitra = "chitra.cli.main:app"