-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (44 loc) · 1.25 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "asthmaca"
version = "2.0.0"
authors = [
{ name="Tanmay Chimurkar", email="[email protected]" },
]
description = "This is a project that acts as a conversational agent for Asthmatic patients by using sBERT and GTP3"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[tool.setuptools]
packages = ["src"]
keywords = ['conversational agent', 'Asthma Chatbot']
[project.urls]
"Homepage" = "https://github.com/tanmaychimurkar/conversational-agent-for-Asthma"
[tool.pycodestyle]
blank-after-import = 1
blank-after-class = 1
blank-before-class = 2
[tool.black]
skip-string-normalization = true
use-pycodestyle = true
line_length = 88
preview=true
[tool.isort]
profile = "black"
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
line_length = 88
lines_after_imports = 1
extend_skip = [".git",".tox","*prod.py","*dev.py","*base.py","*__init__.py","build","tests"]
[tool.autoflake]
in-place = true
remove-all-unused-imports = true
remove-unused-variables = true