-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
executable file
·87 lines (81 loc) · 2.15 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[metadata]
name = PRIMO
version = attr: primo.__version__
description = PRIMO
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/ima-hima/PRIMO
author = Eric Ford
author_email = [email protected]
license = Apache-2.0
license_file = LICENSE
classifiers =
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
project_urls =
Bug Tracker = https://github.com/ima-hima/PRIMO/issues
[options]
packages = find:
install_requires =
aiorwlock==1.1.0
appdirs>=1.4.4
appdirs-stubs>=0.1.0
async-property==0.2.1
cryptography>=3.4.0
httpx[http2]==0.23.0
pydantic[dotenv]==1.8.2
readerwriterlock==1.0.9
sqlparse>=0.4.2
python_requires = >=3.7
include_package_data = True
package_dir =
= primo
[options.packages.find]
where = src
[options.extras_require]
ciso8601 =
ciso8601==2.2.0
dev =
devtools==0.7.0
mypy==0.910
pre-commit==2.15.0
pyfakefs>=4.5.3
pytest==6.2.5
pytest-asyncio==0.19.0
pytest-cov==3.0.0
pytest-httpx==0.21.0
pytest-mock==3.6.1
pytest-timeout==2.1.0
pytest-xdist==2.5.0
types-cryptography==3.3.18
[options.package_data]
primo = py.typed
[mypy]
mypy_path = primo
plugins =
mypy_django_plugin.main
disallow_untyped_defs = True
strict_optional = True
show_error_codes = True
files = primo/
[flake8]
exclude = tests/*,
migrations/*,
manage.py
max-line-length = 88
per-file-ignores = __init__.py:F401
ignore =
E203, # Whitespace before ':'. Ignored for black compatibility
W503, # Line break occurred before a binary operator. Ignored for black compatibility
D100, # Missing docstring in public module
D104, # Missing docstring in public package
D105, # Missing docstring in magic method
D107, # Missing docstring in __init__
SC200, # Spelling error in name (e.g. variable, function, class)
ban-relative-imports = True
docstring-convention = google