-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
52 lines (47 loc) · 1.2 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
[tool.poetry]
authors = ["Yefri Gaitan <yefrigaitan@gmail.com>", "Ecenaz Jen Ozmen <eo2419@columbia.edu>"]
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.9",
"Operating System :: OS Independent",
"Typing :: Typed",
]
description = "A python framework for deserialization"
exclude = [".gitignore"]
keywords = ["python", "serialize", "deserialize"]
license = "MIT"
name = "volga"
readme = "README.md"
repository = "https://github.com/yefrig/volga"
version = "0.2.0"
[tool.poetry.dependencies]
python = "^3.9"
sphinxcontrib-napoleon = "^0.7"
[tool.poetry.dev-dependencies]
black = {version = "^20.8b1", allow-prereleases = true}
codecov = "^2.1.9"
coverage = "^5.3"
flake8 = "^3.8.4"
hypothesis = "^5.37.1"
mypy = "^0.782"
pylint = "^2.6.0"
pytest = "^5.2"
recommonmark = "^0.6.0"
sphinx-autodoc-typehints = "^1.11.1"
sphinx-rtd-theme = "^0.5.0"
[build-system]
build-backend = "poetry.masonry.api"
requires = ["poetry>=0.12"]
[tool.coverage.run]
source = ["volga"]
[tool.coverage.report]
exclude_lines = [
'raise NotImplementedError',
'pass',
'@abstractmethod',
'if TYPE_CHECKING',
]
fail_under = 90
precision = 1
show_missing = true