-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
54 lines (51 loc) · 948 Bytes
/
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
53
54
[tool.poetry]
name = "culqi"
version = "1.0.0"
description = 'Biblioteca de Culqi en Python'
authors = ["zodiacfireworks <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.7"
requests = "^2.22"
jsonschema = "^3.2.0"
[tool.poetry.dev-dependencies]
jupyterlab = "^1.2"
twine = "^3.1"
pylint = "^2.4"
autopep8 = "^1.4"
coverage = "^5.0"
pytest-cov = "^2.8"
python-dotenv = "^0.10.3"
mypy = "^0.761.0"
tox = "^3.14"
codecov = "^2.0"
flake8 = "^3.7"
pytest = "^5.3"
pytest-vcr = "^1.0"
black = "19.10b0"
pydocstyle = "^5.0"
pre-commit = "^1.21.0"
flake8-black = "^0.1.1"
[tool.black]
target_version = ['py35', 'py36', 'py37', 'py38']
include = '\.pyi?$'
exclude = '''
/(\.git/
|\.eggs
|\.hg
|__pycache__
|\.cache
|\.ipynb_checkpoints
|\.mypy_cache
|\.pytest_cache
|\.tox
|\.venv
|_build
|buck-out
|build
|dist
|legacy
)/
'''
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"