-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
79 lines (69 loc) · 1.34 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
[metadata]
name = vizno
version = 0.1.1
description = Visual layout for python.
long_description = file: README.md
long_description_content_type = text/markdown
classifiers =
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
project_urls =
Documentation = https://victorbenichoux.github.io/vizno/
Code = https://github.com/victorbenichoux/vizno
Issue tracker = https://github.com/victorbenichoux/vizno/issues
license = MIT
license-file = LICENSE
[options]
zip_safe = False
include_package_data = True
packages = find:
install_requires =
typer
pydantic
# api
fastapi
[options.extras_require]
dev =
# dev
requests
aiofiles
uvicorn
websockets
[options.packages.find]
where = .
exclude =
tests
examples
[options.entry_points]
console_scripts =
vizno = vizno.cli:app
[options.package_data]
vizno =
py.typed
js/*.js
js/*.css
js/index.html
statics/*
[tool:pytest]
addopts =
--strict
--verbose
--tb=native
-vv
--failed-first
--disable-warnings
--durations 10
--color=yes
tests
[flake8]
max-line-length = 88
extend-ignore = E741,W605,B011,E203
exclude = .vulture.py,build,lib
[coverage:run]
source = vizno
[coverage:report]
fail_under = 80
precision = 2
[mypy]
ignore_missing_imports = True
plugins = pydantic.mypy