-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.cfg
68 lines (62 loc) · 1.37 KB
/
setup.cfg
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
[metadata]
description = Wrapping FID Net
name = fidnet
long_description = file: README.md
long_description_content_type = markdown
license = MIT License
license_file = LICENSE
url = https://github.com/gogulan-k/FID-Net
platforms=any
authors = Gogulan Karunanithy
classifiers =
Programming Language :: Python :: 3
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
[options]
python_requires = >=3.8
zip_safe = False
packages = find:
install_requires=
pydantic
pydantic-settings
python-dotenv
typer[all]
nmrglue
[options.extras_require]
tests =
pytest
pytest-sugar
pytest-cov
pytest-mock
mypy
dev =
%(tests)s
pre-commit
[options.packages.find]
exclude =
tests
tests.*
[flake8]
ignore=
# Whitespace before ':'
E203
# Too many leading '#' for block comment
E266
# Line break occurred before a binary operator
W503
# unindexed parameters in the str.format, see:
# https://pypi.org/project/flake8-string-format/
P1
# B008 Do not perform function calls in argument defaults.
B008
# import not on top of file (keeping CLI fast)
E402
max_line_length = 88
max-complexity = 15
select = B,C,E,F,W,T4,B902,T,P
show_source = true
count = true
[options.entry_points]
console_scripts =
fidnet = fidnet.__main__:cli